(0.1ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAdminNotes (20120430130552)  (0.0ms) begin transaction  (0.3ms) 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.0ms) PRAGMA index_list("admin_notes")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")  (0.0ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_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 ('20120430130552')  (2.9ms) commit transaction Migrating to MoveAdminNotesToComments (20120430130553)  (0.0ms) begin transaction  (0.0ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.2ms) 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.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.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "active_admin_comments"  (0.3ms) 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.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (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.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (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.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "altered_active_admin_comments"  (0.1ms) DROP TABLE "altered_active_admin_comments"  (0.1ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (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 ('20120430130553')  (4.4ms) commit transaction Migrating to DeviseCreateAdminUsers (20120430200549)  (0.0ms) begin transaction  (0.4ms) 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)  AdminUser Exists (0.1ms) SELECT 1 FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (8.9ms) 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", Tue, 01 May 2012 15:43:55 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$IWlHz4qD5HOwv1PfYUYGfOHi.4XopiJ5Twc08dznHCPg15MgOv8.."], ["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", Tue, 01 May 2012 15:43:55 UTC +00:00]]  (0.0ms) PRAGMA index_list("admin_users")  (0.3ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430200549')  (3.6ms) commit transaction Migrating to CreatePages (20120430201522)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430201522')  (3.0ms) commit transaction  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.0ms) PRAGMA index_list("pages") Started GET "/" for 127.0.0.1 at 2012-05-01 08:44:54 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:146:in `handle' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:86:in `each' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:86:in `block in start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:66:in `loop' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:66:in `start' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/lib/nack/server.rb:13:in `run' /Users/ejholmes/Library/Application Support/Pow/Versions/0.3.2/node_modules/nack/bin/nack_worker:4:in `
' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.5ms) Started HEAD "/admin" for 127.0.0.1 at 2012-05-01 08:44:57 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 24ms Started HEAD "/admin/login" for 127.0.0.1 at 2012-05-01 08:44:58 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (119.5ms) Compiled active_admin.css (1627ms) (pid 34993) Compiled active_admin/editor.css (0ms) (pid 34993) Compiled active_admin/editor/wysiwyg.css (0ms) (pid 34993) Compiled jquery.js (1ms) (pid 34993) Compiled jquery-ui.js (2ms) (pid 34993) Compiled jquery_ujs.js (0ms) (pid 34993) Compiled active_admin/application.js (0ms) (pid 34993) Compiled active_admin/base.js (102ms) (pid 34993) Compiled active_admin.js (159ms) (pid 34993) Compiled active_admin/editor/wysihtml5.min.js (0ms) (pid 34993) Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 34993) Compiled active_admin/editor/quicksave.js (0ms) (pid 34993) Compiled active_admin/editor.js (48ms) (pid 34993) Completed 200 OK in 2154ms (Views: 2140.8ms | ActiveRecord: 0.4ms) Started GET "/admin" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 0ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (0.3ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (18.9ms) Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin.css - 200 OK (19ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /jquery.js - 200 OK (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/application.js - 200 OK (1ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin.js - 200 OK (32ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor/quicksave.js - 200 OK (3ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:04 -0700 Served asset /active_admin/editor.js - 200 OK (4ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /jquery-ui.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /active_admin/editor/wysiwyg.css - 200 OK (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /jquery_ujs.js - 200 OK (1ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /active_admin/base.js - 200 OK (6ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-01 08:45:07 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 200 OK (3ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-01 15:45:15.211278', "current_sign_in_at" = '2012-05-01 15:45:15.211278', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-01 15:45:15.212115' WHERE "admin_users"."id" = 1  (2.4ms) commit transaction Redirected to http://active_admin_editor.dev/admin Completed 302 Found in 214ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (34.9ms) Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Served asset /active_admin.js - 200 OK (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:45:15 -0700 Served asset /active_admin/editor.js - 200 OK (30ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (125.8ms) Completed 200 OK in 192ms (Views: 186.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:06 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-01 08:46:07 -0700 Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-01 08:46:07 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (180ms) Served asset /active_admin/datepicker/datepicker-nipple.png - 200 OK (181ms) Started GET "/admin/pages/new" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Processing by Admin::PagesController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (26.5ms) Completed 200 OK in 158ms (Views: 151.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (2ms) Served asset /active_admin.js - 304 Not Modified (7ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor/icons.png - 200 OK (6ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:46:08 -0700 Served asset /active_admin/editor/wysiwyg - 200 OK (5ms) Started POST "/admin/pages" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Processing by Admin::PagesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test
", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Create Page"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "

Hello world

this is a test
"], ["created_at", Tue, 01 May 2012 15:46:27 UTC +00:00], ["title", ""], ["updated_at", Tue, 01 May 2012 15:46:27 UTC +00:00]]  (53.5ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 64ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.0ms) Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:27 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.0ms) Completed 200 OK in 54ms (Views: 50.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:46:31 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:46:40 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.5ms) Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:48:31 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (9.0ms) Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:04 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (160.4ms) Completed 200 OK in 164ms (Views: 161.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-01 08:49:05 -0700 Served asset /active_admin/orderable.png - 200 OK (8ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.2ms) Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:49:08 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:49:49 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:

", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = '

Hello world

this is a test

Here''s a list:

', "updated_at" = '2012-05-01 15:49:49.550931' WHERE "pages"."id" = 1  (49.2ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 59ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:49:49 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.0ms) Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:50 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.3ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:49:53 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:
", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = '

Hello world

this is a test

Here''s a list:
', "updated_at" = '2012-05-01 15:50:17.588384' WHERE "pages"."id" = 1  (52.2ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 60ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.5ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:17 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (47.4ms) Completed 200 OK in 50ms (Views: 49.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:50:19 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (88.4ms) Completed 200 OK in 92ms (Views: 89.8ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:52 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.7ms) Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/icons.png" for 127.0.0.1 at 2012-05-01 08:50:55 -0700 Served asset /active_admin/editor/icons.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (0ms) (pid 34993) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (105.4ms) Completed 200 OK in 109ms (Views: 107.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:54:27 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (116.8ms) Completed 200 OK in 174ms (Views: 122.7ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:57:30 -0700 Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:57:33 -0700 Served asset /active_admin.js - 304 Not Modified (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:57:33 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:57:33 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:58:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (17ms) (pid 35337) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (91.4ms) Completed 200 OK in 95ms (Views: 93.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:58:26 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (113.7ms) Completed 200 OK in 173ms (Views: 120.1ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 08:58:36 -0700 Served asset /active_admin.js - 304 Not Modified (31ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:39 -0700 Served asset /active_admin/editor.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 08:58:39 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 08:58:39 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 08:58:44 -0700 Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:02:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (67.7ms) Completed 200 OK in 71ms (Views: 69.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:02:01 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (108.8ms) Completed 200 OK in 112ms (Views: 110.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:02:56 -0700 Served asset /active_admin/editor.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:02:57 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (115.6ms) Completed 200 OK in 119ms (Views: 117.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin.js - 304 Not Modified (31ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:03:13 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:03:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (100.5ms) Completed 200 OK in 104ms (Views: 102.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:03:30 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (203.5ms) Completed 200 OK in 207ms (Views: 205.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:03:50 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:04:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (110.8ms) Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:04:39 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (129.2ms) Completed 200 OK in 133ms (Views: 130.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:04:56 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (124.6ms) Completed 200 OK in 128ms (Views: 126.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:05:08 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (118.8ms) Completed 200 OK in 122ms (Views: 120.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:05:22 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (40ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (88.5ms) Completed 200 OK in 92ms (Views: 90.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:05:54 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (110.3ms) Completed 200 OK in 116ms (Views: 113.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:06:48 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:06:49 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:07:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (81.1ms) Completed 200 OK in 84ms (Views: 82.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (29ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:07:32 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:08:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (12ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (88.5ms) Completed 200 OK in 92ms (Views: 90.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:08:06 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:08:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (126.4ms) Completed 200 OK in 130ms (Views: 128.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:08:16 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (82.8ms) Completed 200 OK in 86ms (Views: 84.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin/editor.css - 200 OK (5ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:09:25 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.9ms) Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Served asset /active_admin/editor.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:09:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:09:45 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (148.7ms) Completed 200 OK in 152ms (Views: 150.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:09:53 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:09:54 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (43.3ms) Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor.css - 200 OK (2ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:10:34 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (13ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (181.7ms) Completed 200 OK in 185ms (Views: 183.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Served asset /active_admin/editor.css - 200 OK (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:10:59 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (115.4ms) Completed 200 OK in 119ms (Views: 117.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Served asset /active_admin/editor.css - 200 OK (5ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:11:46 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:11:47 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (14ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (210.2ms) Completed 200 OK in 214ms (Views: 211.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin/editor.css - 200 OK (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:12:30 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wuENeFL7puH5NvNesYAQqq5uMtDpnpWmxlWX/QSV72M=", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:
", "title"=>""}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://active_admin_editor.dev/admin/pages/1 Completed 302 Found in 13ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (13.5ms) Completed 200 OK in 87ms (Views: 84.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:46 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:12:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.5ms) Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:12:48 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:13:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (661ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (692.7ms) Completed 200 OK in 696ms (Views: 694.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:13:59 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:14:04 -0700 Served asset /active_admin/editor.css - 304 Not Modified (34ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (634ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (696.9ms) Completed 200 OK in 700ms (Views: 698.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:15:41 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:15:42 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:15:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (670ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (753.0ms) Completed 200 OK in 756ms (Views: 754.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:15:58 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:16:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (663ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (699.1ms) Completed 200 OK in 703ms (Views: 700.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:16:10 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:16:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (670ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (749.2ms) Completed 200 OK in 753ms (Views: 750.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:16:42 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (666ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (702.2ms) Completed 200 OK in 706ms (Views: 703.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin/editor.css - 200 OK (34ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:01 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (636ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (751.1ms) Completed 200 OK in 754ms (Views: 752.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:16 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (668ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (757.6ms) Completed 200 OK in 761ms (Views: 759.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:37 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:17:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (674ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (762.4ms) Completed 200 OK in 766ms (Views: 764.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:17:59 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (647ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (756.7ms) Completed 200 OK in 760ms (Views: 758.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:13 -0700 Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:18:14 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.8ms) Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:18:27 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:19:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (646ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (753.4ms) Completed 200 OK in 757ms (Views: 755.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin/editor.css - 200 OK (9ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:19:18 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.7ms) Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin/editor.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:19:22 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:19:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (640ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (746.9ms) Completed 200 OK in 750ms (Views: 748.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:19:42 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:23:33 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (674ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (759.6ms) Completed 200 OK in 763ms (Views: 761.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:23:34 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:23:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (676ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (754.4ms) Completed 200 OK in 758ms (Views: 756.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor.css - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:23:50 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:24:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (672ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (761.1ms) Completed 200 OK in 765ms (Views: 762.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:24:16 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:24:17 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:24:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin/editor.css (668ms) (pid 35451) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (756.1ms) Completed 200 OK in 759ms (Views: 757.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor.css - 200 OK (9ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:24:40 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.2ms) Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin/editor.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin/editor.css - 304 Not Modified (1ms) Served asset /active_admin/editor/wysiwyg.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-01 09:26:23 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2012-05-09 14:59:37 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.4ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (131.9ms) Completed 200 OK in 284ms (Views: 270.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin/application.js - 200 OK (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin.css - 200 OK (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /jquery.js - 200 OK (4ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin.js - 200 OK (11ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /active_admin/base.js - 200 OK (6ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /jquery-ui.js - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-09 14:59:40 -0700 Served asset /jquery_ujs.js - 200 OK (2ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-09 14:59:46 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (18.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "current_sign_in_at" = '2012-05-09 21:59:46.872814', "sign_in_count" = 2, "updated_at" = '2012-05-09 21:59:46.873710' WHERE "admin_users"."id" = 1  (2.8ms) commit transaction Redirected to http://localhost:3000/admin Completed 302 Found in 208ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 14:59:46 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (13.9ms) Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 14:59:47 -0700 Served asset /active_admin.js - 200 OK (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 14:59:48 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (68.8ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (222.2ms) Completed 200 OK in 231ms (Views: 155.0ms | ActiveRecord: 69.6ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 14:59:49 -0700 Served asset /active_admin/orderable.png - 200 OK (16ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 14:59:49 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (11ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 14:59:49 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 200 OK (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 14:59:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (29.0ms) Completed 200 OK in 45ms (Views: 42.3ms | ActiveRecord: 0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 14:59:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 14:59:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 14:59:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:00:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (77.9ms) Completed 200 OK in 135ms (Views: 83.9ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:00:30 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:00:30 -0700 Served asset /active_admin.js - 304 Not Modified (9ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:01:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (2.7ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (80.5ms) Completed 200 OK in 137ms (Views: 108.7ms | ActiveRecord: 3.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:01:54 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:01:54 -0700 Served asset /active_admin.js - 304 Not Modified (34ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:02:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (2.7ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (97.9ms) Completed 200 OK in 133ms (Views: 104.3ms | ActiveRecord: 3.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:25 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:02:25 -0700 Served asset /active_admin.js - 304 Not Modified (33ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:02:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.5ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (158.6ms) Completed 200 OK in 214ms (Views: 163.6ms | ActiveRecord: 4.5ms) Started GET "/assets/active_admin/editor.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor.css - 200 OK (8ms) Started GET "/assets/active_admin/editor/wysiwyg.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor/wysiwyg.css - 200 OK (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/editor.js" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor.js - 200 OK (22ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin.js - 304 Not Modified (11ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-09 15:02:46 -0700 Served asset /active_admin/editor/wysiwyg - 200 OK (3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:05:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (26.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (102.7ms) Completed 200 OK in 162ms (Views: 85.0ms | ActiveRecord: 27.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:05:10 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:05:10 -0700 Served asset /active_admin.js - 304 Not Modified (88ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:05:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:08:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1452ms) (pid 29240) Page Load (2.8ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1542.7ms) Completed 200 OK in 1602ms (Views: 1548.8ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:08:06 -0700 Served asset /active_admin.css - 200 OK (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:08:06 -0700 Compiled active_admin.js (6ms) (pid 29240) Served asset /active_admin.js - 200 OK (47ms) Started GET "/assets/active_admin/editor/wysiwyg" for 127.0.0.1 at 2012-05-09 15:08:06 -0700 Served asset /active_admin/editor/wysiwyg - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:08:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:09:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (26.5ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (101.8ms) Completed 200 OK in 160ms (Views: 83.9ms | ActiveRecord: 27.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:09:55 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:09:55 -0700 Compiled active_admin/editor.js (34ms) (pid 29411) Compiled active_admin.js (3ms) (pid 29411) Served asset /active_admin.js - 200 OK (96ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:10:05 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/" for 127.0.0.1 at 2012-05-09 15:30:37 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.6ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 15:30:40 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (36.3ms) Completed 200 OK in 121ms (Views: 100.5ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:30:40 -0700 Served asset /active_admin.js - 200 OK (27ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:30:40 -0700 Served asset /active_admin.css - 200 OK (31ms)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAdminNotes (20120430130552) Migrating to MoveAdminNotesToComments (20120430130553) Migrating to DeviseCreateAdminUsers (20120430200549) Migrating to CreatePages (20120430201522) Migrating to CreateAssets (20120509223621)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "storage" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120509223621')  (2.9ms) commit transaction  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.0ms) PRAGMA index_list("assets")  (0.0ms) PRAGMA index_list("pages") Started GET "/admin" for 127.0.0.1 at 2012-05-09 15:40:24 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (16.0ms) Completed 200 OK in 69ms (Views: 48.7ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:40:24 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:40:24 -0700 Served asset /active_admin.js - 304 Not Modified (11ms) Started GET "/assets" for 127.0.0.1 at 2012-05-09 15:40:27 -0700 Served asset - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:42:50 -0700 LoadError (Expected /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb to define Admin::AssetsController): activesupport (3.2.3) lib/active_support/dependencies.rb:503:in `load_missing_constant' activesupport (3.2.3) lib/active_support/dependencies.rb:192:in `block in const_missing' activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `each' activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `const_missing' activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize' activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each' activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize' activesupport (3.2.3) lib/active_support/dependencies.rb:554:in `get' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.6ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:43:16 -0700 Processing by Admin::AssetsController#index as HTML Completed 500 Internal Server Error in 2ms NameError (uninitialized constant Admin::AssetsController::AcitveAdmin): /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:5:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.2ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:43:45 -0700 Processing by Admin::AssetsController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant AcitveAdmin): /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:5:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.2ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:44:06 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Completed 500 Internal Server Error in 24ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:45:10 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Completed 500 Internal Server Error in 5ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:45:12 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:45:16 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Completed 500 Internal Server Error in 2ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/" for 127.0.0.1 at 2012-05-09 15:45:21 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (13.5ms) Completed 200 OK in 68ms (Views: 16.5ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:45:21 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:45:21 -0700 Served asset /active_admin.js - 304 Not Modified (36ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 15:45:23 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (301.3ms) Completed 200 OK in 406ms (Views: 342.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:45:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:45:23 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 15:45:23 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 15:45:23 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 15:45:23 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:45:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.6ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (26.2ms) Completed 200 OK in 31ms (Views: 24.4ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:45:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:45:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:46:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.4ms) Completed 200 OK in 81ms (Views: 22.5ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:46:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:46:32 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:48:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.0ms) Completed 200 OK in 82ms (Views: 51.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:48:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:48:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:49:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.9ms) Completed 200 OK in 81ms (Views: 22.2ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:49:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:49:17 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:50:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.5ms) Completed 200 OK in 82ms (Views: 50.6ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:50:19 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:50:19 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:50:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 54ms (Views: 23.0ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:50:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:50:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:52:16 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:52:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:52:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:52:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.1ms) Completed 200 OK in 52ms (Views: 49.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:52:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:52:20 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:52:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:52:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:52:35 -0700 Compiled active_admin/editor/assets.js (0ms) (pid 33484) Compiled active_admin/editor.js (12ms) (pid 33484) Compiled active_admin.js (2ms) (pid 33484) Served asset /active_admin.js - 200 OK (93ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:54:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.2ms) Completed 200 OK in 84ms (Views: 23.4ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:54:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:54:04 -0700 Compiled active_admin/editor/assets.js (0ms) (pid 33484) Compiled active_admin/editor.js (7ms) (pid 33484) Compiled active_admin.js (2ms) (pid 33484) Served asset /active_admin.js - 200 OK (93ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:54:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:54:25 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:54:25 -0700 Compiled active_admin/editor/assets.js (0ms) (pid 33484) Compiled active_admin/editor.js (7ms) (pid 33484) Compiled active_admin.js (2ms) (pid 33484) Served asset /active_admin.js - 200 OK (64ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:54:27 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Completed 500 Internal Server Error in 5ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:54:40 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:55:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 87ms (Views: 23.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:55:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:55:13 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:55:15 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Completed 500 Internal Server Error in 5ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:55:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (47.7ms) Completed 200 OK in 51ms (Views: 49.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:55:27 -0700 Compiled active_admin/editor/assets.js (0ms) (pid 33484) Compiled active_admin/editor.js (7ms) (pid 33484) Compiled active_admin.js (3ms) (pid 33484) Served asset /active_admin.js - 200 OK (67ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:55:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:55:31 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered text template (0.0ms) Completed 200 OK in 71ms (Views: 70.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:56:17 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:56:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (51.6ms) Completed 200 OK in 83ms (Views: 53.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:56:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:56:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:56:59 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Completed 500 Internal Server Error in 6ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 15:57:11 -0700 Processing by Admin::AssetsController#index as HTML ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Completed 500 Internal Server Error in 2ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:57:12 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:57:15 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/assets/index, application/index with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1042081886880483163__process_action__3750854059278875655__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3812245918249344487__call__4454281601087656771__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:57:51 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.1ms) Completed 200 OK in 40ms (Views: 36.3ms | ActiveRecord: 0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 15:57:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (100.6ms) Completed 200 OK in 128ms (Views: 100.0ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 15:57:55 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 15:57:55 -0700 Served asset /active_admin.js - 304 Not Modified (41ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 15:57:58 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (0.0ms) Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:00:04 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered collection (0.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (19.7ms) Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.3ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:01:15 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered collection (0.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (0.2ms) Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:01:25 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered collection (0.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.7ms) Completed 200 OK in 43ms (Views: 39.0ms | ActiveRecord: 0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:01:51 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (7.9ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (Missing partial admin/active_admin/assets/asset with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" * "/Users/ejholmes/Source/active_admin_editor/app/views" ): 1: <%= render @assets %> actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:339:in `find_template' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:333:in `find_partial' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:222:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:41:in `render_partial' actionpack (3.2.3) lib/action_view/helpers/rendering_helper.rb:27:in `render' /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb:1:in `___sers_ejholmes__ource_active_admin_editor_app_views_admin_assets_index_js_erb__4444641598330366543_70129351090220' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__418831036696447127__process_action__4016335611664050343__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1965954124898976449__call__4004245382398445058__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:05:22 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.6ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:05:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (107.5ms) Completed 200 OK in 135ms (Views: 106.7ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:05:32 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:05:32 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:05:35 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.2ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (1.9ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms) Started GET "/assets/test" for 127.0.0.1 at 2012-05-09 16:05:35 -0700 Served asset /test - 404 Not Found (27ms) ActionController::RoutingError (No route matches [GET] "/assets/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets/.js" for 127.0.0.1 at 2012-05-09 16:09:42 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets/.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:09:44 -0700 Processing by Admin::AssetsController#index as JS Completed 500 Internal Server Error in 33ms NameError (uninitialized constant ActiveAdmin::Asset::AssetUploader): /Users/ejholmes/Source/active_admin_editor/app/models/active_admin/asset.rb:3:in `' /Users/ejholmes/Source/active_admin_editor/app/models/active_admin/asset.rb:1:in `' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:5:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__418831036696447127__process_action__4016335611664050343__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1965954124898976449__call__4004245382398445058__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:10:07 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (36.5ms) Completed 500 Internal Server Error in 117ms ActionView::Template::Error (Missing partial admin/assets/form, application/form with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" * "/Users/ejholmes/Source/active_admin_editor/app/views" ): 1: <%= render 'form' %> 2: <%= render @assets %> actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:339:in `find_template' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:333:in `find_partial' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:222:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:41:in `render_partial' actionpack (3.2.3) lib/action_view/helpers/rendering_helper.rb:27:in `render' /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb:1:in `___sers_ejholmes__ource_active_admin_editor_app_views_admin_assets_index_js_erb___4306787822201824022_70234439797620' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1475256405940506689__process_action__2802610219572207584__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3444840283694106616__call__3824461689846121365__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:11:04 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (8.2ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (9.9ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (undefined method `active_admin_assets_path' for #<#:0x007fc175bd0928>): 1: <%= form_for ActiveAdmin::Asset.new do |f| %> 2: <%= f.file_field :storage %> 3: <% end %> actionpack (3.2.3) lib/action_dispatch/routing/polymorphic_routes.rb:127:in `polymorphic_url' actionpack (3.2.3) lib/action_dispatch/routing/polymorphic_routes.rb:133:in `polymorphic_path' actionpack (3.2.3) lib/action_view/helpers/form_helper.rb:396:in `apply_form_for_options!' meta_search (1.1.3) lib/meta_search/helpers/form_helper.rb:11:in `apply_form_for_options!' actionpack (3.2.3) lib/action_view/helpers/form_helper.rb:369:in `form_for' /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb:1:in `___sers_ejholmes__ource_active_admin_editor_app_views_admin_assets__form_js_erb__1134504530507525473_70234439227540' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:265:in `render_partial' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:238:in `block in render' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:237:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:41:in `render_partial' actionpack (3.2.3) lib/action_view/helpers/rendering_helper.rb:27:in `render' /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb:1:in `___sers_ejholmes__ource_active_admin_editor_app_views_admin_assets_index_js_erb___4306787822201824022_70234439797620' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:6:in `index' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1475256405940506689__process_action__2802610219572207584__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3444840283694106616__call__3824461689846121365__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:11:48 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (4.2ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (9.5ms) Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:12:45 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.7ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (5.4ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:12:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (85.7ms) Completed 200 OK in 140ms (Views: 84.7ms | ActiveRecord: 4.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:12:51 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:12:51 -0700 Served asset /active_admin.js - 304 Not Modified (13ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:12:53 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.3ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.8ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:12:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:13:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:13:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:13:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:13:13 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (5.1ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:13:13 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:24:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1296ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1361.4ms) Completed 200 OK in 1365ms (Views: 1363.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:24:57 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:24:57 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:25:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.4ms) Completed 200 OK in 53ms (Views: 22.6ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:25:28 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:25:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:25:31 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.6ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (5.1ms) Completed 200 OK in 20ms (Views: 9.5ms | ActiveRecord: 0.3ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:25:31 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:26:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:26:14 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:26:14 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:26:16 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.3ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.8ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:26:16 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:26:21 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (0.9ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.4ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:26:39 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (0.8ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.2ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:26:39 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-09 16:26:43 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "active_admin_asset"=>{"storage"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"}, "commit"=>"Upload", "page"=>{"content"=>"

Hello world

this is a test

Here's a list:
  • Hello
  • World
  • This is a test
", "title"=>""}, "_wysihtml5_mode"=>"1", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 10ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-09 16:26:43 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.3ms) Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:26:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:26:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:27:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.2ms) Completed 200 OK in 52ms (Views: 49.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:27:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:27:06 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:27:08 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (0.9ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.4ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:27:08 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:28:18 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.0ms) Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:28:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:28:18 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:28:20 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (30.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (34.2ms) Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:28:20 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:42:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:42:52 -0700 Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (2ms) (pid 34540) Served asset /active_admin.js - 200 OK (82ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:42:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:44:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:44:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:44:28 -0700 Compiled active_admin/editor.js (36ms) (pid 34540) Compiled active_admin.js (2ms) (pid 34540) Served asset /active_admin.js - 200 OK (196ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:44:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (43.6ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:44:35 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:44:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:44:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:44:52 -0700 Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (3ms) (pid 34540) Served asset /active_admin.js - 200 OK (105ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:44:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:45:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:45:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:45:06 -0700 Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (2ms) (pid 34540) Served asset /active_admin.js - 200 OK (98ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:45:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:45:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:45:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:46:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:46:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:46:36 -0700 Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (3ms) (pid 34540) Served asset /active_admin.js - 200 OK (90ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:46:39 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.5ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:46:39 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:46:51 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:46:51 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:46:51 -0700 Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (3ms) (pid 34540) Served asset /active_admin.js - 200 OK (97ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:46:53 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.5ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:46:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:46:54 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.4ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:46:54 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:46:58 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.6ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:46:58 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:47:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:47:28 -0700 Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (3ms) (pid 34540) Served asset /active_admin.js - 200 OK (74ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:47:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:47:30 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (0.9ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.3ms) Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:47:30 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:47:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:47:32 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:47:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:48:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1180ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1321.3ms) Completed 200 OK in 1325ms (Views: 1323.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:48:15 -0700 Served asset /active_admin.css - 200 OK (13ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:48:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:48:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1213ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1333.6ms) Completed 200 OK in 1337ms (Views: 1335.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:48:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:48:36 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:48:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1239ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1321.3ms) Completed 200 OK in 1325ms (Views: 1323.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:49:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:49:01 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:49:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1174ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1270.6ms) Completed 200 OK in 1274ms (Views: 1272.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:49:21 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:49:21 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:49:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1220ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1436.3ms) Completed 200 OK in 1440ms (Views: 1438.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:49:37 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:49:37 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:49:43 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.7ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:49:43 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:49:46 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.8ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:49:46 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:49:48 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.7ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:49:48 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:50:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1207ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1324.8ms) Completed 200 OK in 1328ms (Views: 1326.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:50:33 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:50:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:50:35 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.7ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:50:35 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:50:38 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.1ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.9ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:50:38 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:52:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.7ms) Completed 200 OK in 52ms (Views: 21.9ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:52:00 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:52:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:52:02 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.6ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (5.2ms) Completed 200 OK in 21ms (Views: 9.8ms | ActiveRecord: 0.3ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:52:02 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:52:04 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.7ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:52:04 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:52:22 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (4.6ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:52:22 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:52:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:52:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:52:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:52:42 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.7ms) Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:52:42 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:52:48 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.2ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:52:48 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/new.js" for 127.0.0.1 at 2012-05-09 16:53:36 -0700 ActionController::RoutingError (No route matches [GET] "/admin/new.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/new.js" for 127.0.0.1 at 2012-05-09 16:53:47 -0700 ActionController::RoutingError (No route matches [GET] "/admin/new.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets/new.js" for 127.0.0.1 at 2012-05-09 16:53:54 -0700 Processing by Admin::AssetsController#new as JS Completed 500 Internal Server Error in 45ms ActionView::MissingTemplate (Missing template admin/assets/new, application/new with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" * "/Users/ejholmes/Source/active_admin_editor/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:167:in `to_js' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' /Users/ejholmes/Source/active_admin_editor/app/controllers/admin/assets_controller.rb:11:in `new' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1475256405940506689__process_action__4608595733408531095__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3444840283694106616__call__3824461689846121365__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.1ms) Started GET "/admin/assets/new.js" for 127.0.0.1 at 2012-05-09 16:54:11 -0700 Processing by Admin::AssetsController#new as JS Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/new.js.erb (3.3ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:55:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 85ms (Views: 23.2ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:55:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:55:40 -0700 Compiled active_admin/editor/assets.js (0ms) (pid 34540) Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (2ms) (pid 34540) Served asset /active_admin.js - 200 OK (98ms) Started GET "/admin/new.js" for 127.0.0.1 at 2012-05-09 16:55:41 -0700 ActionController::RoutingError (No route matches [GET] "/admin/new.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/new.js" for 127.0.0.1 at 2012-05-09 16:55:43 -0700 ActionController::RoutingError (No route matches [GET] "/admin/new.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:55:43 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.2ms) Completed 200 OK in 17ms (Views: 6.7ms | ActiveRecord: 0.3ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:55:43 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/new.js" for 127.0.0.1 at 2012-05-09 16:55:45 -0700 ActionController::RoutingError (No route matches [GET] "/admin/new.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:55:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:55:47 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:55:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:56:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.2ms) Completed 200 OK in 53ms (Views: 51.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:56:07 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:56:07 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/new.js" for 127.0.0.1 at 2012-05-09 16:56:10 -0700 ActionController::RoutingError (No route matches [GET] "/admin/new.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:56:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:56:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:56:20 -0700 Compiled active_admin/editor/assets.js (0ms) (pid 34540) Compiled active_admin/editor.js (7ms) (pid 34540) Compiled active_admin.js (3ms) (pid 34540) Served asset /active_admin.js - 200 OK (103ms) Started GET "/admin/assets/new.js" for 127.0.0.1 at 2012-05-09 16:56:22 -0700 Processing by Admin::AssetsController#new as JS Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.6ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/new.js.erb (3.1ms) Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:56:53 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.6ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.3ms) Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.2ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:56:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets/new.js" for 127.0.0.1 at 2012-05-09 16:56:55 -0700 Processing by Admin::AssetsController#new as JS Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/new.js.erb (3.0ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 16:57:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1190ms) (pid 34540) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1314.7ms) Completed 200 OK in 1318ms (Views: 1316.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 16:57:31 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 16:57:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:57:33 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.0ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:57:33 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets/new.js" for 127.0.0.1 at 2012-05-09 16:57:33 -0700 Processing by Admin::AssetsController#new as JS Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.0ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/new.js.erb (2.5ms) Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:57:37 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.0ms) Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:57:37 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:57:40 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.1ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:57:40 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:59:31 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.2ms) SELECT "assets".* FROM "assets"  Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.0ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.2ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:59:31 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets/new.js" for 127.0.0.1 at 2012-05-09 16:59:31 -0700 Processing by Admin::AssetsController#new as JS Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/_form.js.erb (1.4ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/new.js.erb (3.1ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 16:59:34 -0700 Processing by Admin::AssetsController#index as JS ActiveAdmin::Asset Load (0.1ms) SELECT "assets".* FROM "assets" Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/active_admin/assets/_asset.js.erb (0.5ms) Rendered /Users/ejholmes/Source/active_admin_editor/app/views/admin/assets/index.js.erb (2.0ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.1ms) Started GET "/uploads/active_admin/asset/storage/1/test" for 127.0.0.1 at 2012-05-09 16:59:34 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/active_admin/asset/storage/1/test"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:04:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1166ms) (pid 35348) Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1374.5ms) Completed 200 OK in 1429ms (Views: 1380.3ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:04:35 -0700 Compiled active_admin/editor.js (6ms) (pid 35348) Compiled active_admin.js (2ms) (pid 35348) Served asset /active_admin.js - 200 OK (81ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:04:35 -0700 Served asset /active_admin.css - 200 OK (8ms)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAdminNotes (20120430130552) Migrating to MoveAdminNotesToComments (20120430130553) Migrating to DeviseCreateAdminUsers (20120430200549) Migrating to CreatePages (20120430201522) Migrating to CreateAssets (20120510000716)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "storage" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQLite3::SQLException: table "assets" already exists: CREATE TABLE "assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "storage" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) rollback transaction  (0.1ms) select sqlite_version(*)  (55.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAdminNotes (20120430130552)  (0.0ms) begin transaction  (0.3ms) 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.0ms) PRAGMA index_list("admin_notes")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")  (0.0ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_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 ('20120430130552')  (28.1ms) commit transaction Migrating to MoveAdminNotesToComments (20120430130553)  (0.4ms) begin transaction  (0.1ms) PRAGMA index_list("admin_notes")  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (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.5ms) 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.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (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.3ms) 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.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (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.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("altered_active_admin_comments")  (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.0ms) PRAGMA index_list("altered_active_admin_comments")  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.1ms) SELECT * FROM "altered_active_admin_comments"  (0.1ms) DROP TABLE "altered_active_admin_comments"  (0.1ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)  (0.1ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.1ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (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 ('20120430130553')  (3.6ms) commit transaction Migrating to DeviseCreateAdminUsers (20120430200549)  (0.0ms) begin transaction  (0.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)  AdminUser Exists (0.2ms) SELECT 1 FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (1.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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:07:42 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$2RcOUItIBxaNDsVZMujx9.Q7A88oZR3DYqbiMdvkZV/gmpXEiWScW"], ["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", Thu, 10 May 2012 00:07:42 UTC +00:00]]  (0.0ms) PRAGMA index_list("admin_users")  (0.5ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430200549')  (2.8ms) commit transaction Migrating to CreatePages (20120430201522)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120430201522')  (2.5ms) commit transaction Migrating to CreateAssets (20120510000716)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "storage" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120510000716')  (2.5ms) commit transaction  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.0ms) PRAGMA index_list("assets")  (0.0ms) PRAGMA index_list("pages") Started GET "/admin" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 401 Unauthorized in 42ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (120.3ms) Completed 200 OK in 221ms (Views: 219.9ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /jquery-ui.js - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin/editor/quicksave.js - 200 OK (2ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 200 OK (29ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /jquery_ujs.js - 200 OK (2ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin/editor.js - 200 OK (5ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin/application.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin/base.js - 304 Not Modified (5ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-09 17:08:58 -0700 Served asset /active_admin.js - 200 OK (9ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-09 17:09:04 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-10 00:09:04.682793', "current_sign_in_at" = '2012-05-10 00:09:04.682793', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2012-05-10 00:09:04.683606' WHERE "admin_users"."id" = 1  (2.4ms) commit transaction Redirected to http://localhost:3000/admin Completed 302 Found in 237ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 17:09:04 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (7.6ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:09:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:09:06 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (116.1ms) Completed 200 OK in 124ms (Views: 118.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:09:06 -0700 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 2012-05-09 17:09:06 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:09:06 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 17:10:36 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (38.5ms) Completed 200 OK in 91ms (Views: 48.6ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:10:36 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:10:36 -0700 Served asset /active_admin.js - 304 Not Modified (13ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:10:37 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (94.8ms) Completed 200 OK in 126ms (Views: 120.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:10:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:10:37 -0700 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 2012-05-09 17:10:37 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (3ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:10:37 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:10:38 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (16.6ms) Completed 200 OK in 87ms (Views: 80.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:10:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:10:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:11:36 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (137.2ms) Completed 200 OK in 194ms (Views: 170.1ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:11:37 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:11:37 -0700 Served asset /active_admin.js - 304 Not Modified (37ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:11:40 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.3ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:11:40 UTC +00:00], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:11:40 UTC +00:00]]  (3.8ms) commit transaction Redirected to http://localhost:3000/admin/assets/1 Completed 302 Found in 53ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:11:40 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' 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" = 'Asset' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (32.1ms) Completed 200 OK in 37ms (Views: 33.6ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:11:41 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:11:41 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:11:49 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (87.4ms) Completed 200 OK in 95ms (Views: 89.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:11:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:11:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:11:50 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (3ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:11:50 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/admin/pages/new" for 127.0.0.1 at 2012-05-09 17:11:51 -0700 Processing by Admin::PagesController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (17.8ms) Completed 200 OK in 26ms (Views: 19.7ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:11:51 -0700 Served asset /active_admin.css - 304 Not Modified (5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:11:51 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/pages" for 127.0.0.1 at 2012-05-09 17:11:59 -0700 Processing by Admin::PagesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "page"=>{"content"=>"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Create Page"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "pages" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "Test pages"], ["created_at", Thu, 10 May 2012 00:11:59 UTC +00:00], ["title", "test page"], ["updated_at", Thu, 10 May 2012 00:11:59 UTC +00:00]]  (53.5ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 90ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-09 17:11:59 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.5ms) Completed 200 OK in 13ms (Views: 9.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:11:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:11:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:12:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 23ms (Views: 19.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:12:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:12:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:13:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.0ms) Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:13:13 -0700 Compiled active_admin/editor.js (6ms) (pid 36651) Compiled active_admin.js (2ms) (pid 36651) Served asset /active_admin.js - 200 OK (153ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:13:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/" for 127.0.0.1 at 2012-05-09 17:13:56 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 17:14:00 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (13.9ms) Completed 200 OK in 60ms (Views: 16.8ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:14:00 -0700 Served asset /active_admin.js - 304 Not Modified (11ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:14:00 -0700 Served asset /active_admin.css - 304 Not Modified (33ms) Started GET "/admin" for 127.0.0.1 at 2012-05-09 17:14:33 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (7.0ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:14:33 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (3ms) (pid 36705) Served asset /active_admin.js - 200 OK (74ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:14:33 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:14:35 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (183.1ms) Completed 200 OK in 192ms (Views: 184.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:14:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:14:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:14:35 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:14:35 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:14:35 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:14:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (51.6ms) Completed 200 OK in 57ms (Views: 50.3ms | ActiveRecord: 3.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:14:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:14:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:15:18 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:15:19 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:15:19 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (2ms) (pid 36705) Served asset /active_admin.js - 200 OK (64ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:15:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:15:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:15:39 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (2ms) (pid 36705) Served asset /active_admin.js - 200 OK (204ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:15:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:15:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:15:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:15:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (43.6ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:15:52 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (2ms) (pid 36705) Served asset /active_admin.js - 200 OK (163ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:15:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:15:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:15:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:15:58 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (2ms) (pid 36705) Served asset /active_admin.js - 200 OK (94ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:16:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.9ms) Completed 200 OK in 80ms (Views: 51.1ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:16:28 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (2ms) (pid 36705) Served asset /active_admin.js - 200 OK (72ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:16:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:17:33 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.4ms) Completed 200 OK in 80ms (Views: 21.5ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:17:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:17:34 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (2ms) (pid 36705) Served asset /active_admin.js - 200 OK (96ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:17:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (43.3ms) Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:17:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:17:47 -0700 Compiled active_admin/editor.js (6ms) (pid 36705) Compiled active_admin.js (3ms) (pid 36705) Served asset /active_admin.js - 200 OK (69ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:18:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:18:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:18:20 -0700 Compiled active_admin/editor.js (8ms) (pid 36705) Compiled active_admin.js (3ms) (pid 36705) Served asset /active_admin.js - 200 OK (105ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:18:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.0ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:18:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:18:43 -0700 Compiled active_admin/editor.js (7ms) (pid 36705) Compiled active_admin.js (3ms) (pid 36705) Served asset /active_admin.js - 200 OK (70ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 17:18:44 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets.js"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:18:52 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:18:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (16.9ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:18:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:18:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:19:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (107.0ms) Completed 200 OK in 167ms (Views: 113.8ms | ActiveRecord: 4.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:19:05 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:19:05 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:19:07 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (95.3ms) Completed 200 OK in 128ms (Views: 96.9ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:19:07 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:19:07 -0700 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 2012-05-09 17:19:07 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:19:07 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:19:07 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 17:19:09 -0700 Processing by Admin::AssetsController#index as JS AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 406 Not Acceptable in 2ms (ActiveRecord: 0.2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 17:19:09 -0700 Processing by Admin::AssetsController#index as JS AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 406 Not Acceptable in 2ms (ActiveRecord: 0.2ms) Started GET "/admin/assets.js" for 127.0.0.1 at 2012-05-09 17:19:12 -0700 Processing by Admin::AssetsController#index as JS AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 406 Not Acceptable in 2ms (ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:19:19 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:19:36 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:20:50 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (73.5ms) Completed 200 OK in 77ms (Views: 74.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:20:50 -0700 Compiled active_admin/editor.js (6ms) (pid 36774) Compiled active_admin.js (2ms) (pid 36774) Served asset /active_admin.js - 200 OK (99ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:20:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:20:50 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:20:50 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:20:50 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:20:51 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (90.4ms) Completed 200 OK in 95ms (Views: 91.8ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:20:51 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:20:51 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:20:52 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:20:52 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:20:52 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:20:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:20:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:20:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:20:54 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:21:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:21:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:21:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:21:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:21:26 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:21:26 -0700 Served asset /active_admin.css - 304 Not Modified (32ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:21:26 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:21:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:21:55 -0700 Compiled active_admin/editor.js (32ms) (pid 36774) Compiled active_admin.js (2ms) (pid 36774) Served asset /active_admin.js - 200 OK (152ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:21:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:21:57 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:22:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (42.9ms) Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:22:08 -0700 Compiled active_admin/editor.js (6ms) (pid 36774) Compiled active_admin.js (2ms) (pid 36774) Served asset /active_admin.js - 200 OK (57ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:22:08 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:22:10 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.1ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:22:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (42.6ms) Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:22:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:22:17 -0700 Compiled active_admin/editor.js (6ms) (pid 36774) Compiled active_admin.js (2ms) (pid 36774) Served asset /active_admin.js - 200 OK (185ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:22:18 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:23:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:23:40 -0700 Compiled active_admin/editor.js (6ms) (pid 36774) Compiled active_admin.js (2ms) (pid 36774) Served asset /active_admin.js - 200 OK (67ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:23:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:23:41 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:24:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:24:05 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:24:05 -0700 Compiled active_admin/editor.js (6ms) (pid 36774) Compiled active_admin.js (2ms) (pid 36774) Served asset /active_admin.js - 200 OK (190ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:24:06 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:24:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:24:11 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:24:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:24:31 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:24:34 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:24:42 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (146.4ms) Completed 200 OK in 203ms (Views: 154.6ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:24:43 -0700 Served asset /active_admin.css - 304 Not Modified (13ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:24:43 -0700 Served asset /active_admin.js - 304 Not Modified (37ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:24:43 -0700 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 2012-05-09 17:24:43 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:24:43 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/assets/1/edit" for 127.0.0.1 at 2012-05-09 17:24:46 -0700 Processing by Admin::AssetsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]] Asset Load (3.6ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (23.6ms) Completed 200 OK in 28ms (Views: 21.7ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:24:46 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:24:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:24:50 -0700 Processing by Admin::AssetsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Update Asset", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 7ms NoMethodError (undefined method `resize_to_fit' for #<#:0x007f8d02911810>): carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:85:in `block in process!' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `process!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:231:in `block in cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/mount.rb:315:in `cache' carrierwave (0.6.2) lib/carrierwave/mount.rb:173:in `storage=' carrierwave (0.6.2) lib/carrierwave/orm/activerecord.rb:37:in `storage=' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:85:in `block in assign_attributes' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `each' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `assign_attributes' activeadmin (0.4.3) lib/active_admin/resource_controller/callbacks.rb:38:in `update_resource' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:45:in `update' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:56:in `update' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__254796828646034603__process_action__2529722193861474011__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3030022037339465907__call__72393313145765897__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms) Started GET "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:25:35 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' 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" = 'Asset' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (112.4ms) Completed 200 OK in 169ms (Views: 121.3ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:25:36 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:25:36 -0700 Served asset /active_admin.js - 304 Not Modified (11ms) Started GET "/admin/assets/1/edit" for 127.0.0.1 at 2012-05-09 17:25:38 -0700 Processing by Admin::AssetsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]] Asset Load (3.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (47.5ms) Completed 200 OK in 52ms (Views: 45.9ms | ActiveRecord: 3.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:25:38 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:25:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started PUT "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:25:41 -0700 Processing by Admin::AssetsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Update Asset", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]] Completed 500 Internal Server Error in 7ms NoMethodError (undefined method `resize_to_fit' for #<#:0x007fd765242658>): carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:85:in `block in process!' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `process!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:231:in `block in cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/mount.rb:315:in `cache' carrierwave (0.6.2) lib/carrierwave/mount.rb:173:in `storage=' carrierwave (0.6.2) lib/carrierwave/orm/activerecord.rb:37:in `storage=' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:85:in `block in assign_attributes' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `each' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `assign_attributes' activeadmin (0.4.3) lib/active_admin/resource_controller/callbacks.rb:38:in `update_resource' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:45:in `update' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:56:in `update' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__80848192264029877__process_action__1316032079349185008__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__522736902293433593__call__3727206640582903582__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.1ms) Started GET "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:26:51 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' 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" = 'Asset' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (111.6ms) Completed 200 OK in 169ms (Views: 120.8ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:26:51 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:26:51 -0700 Served asset /active_admin.js - 304 Not Modified (37ms) Started GET "/admin/assets/1/edit" for 127.0.0.1 at 2012-05-09 17:26:52 -0700 Processing by Admin::AssetsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]] Asset Load (3.7ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.4ms) Completed 200 OK in 27ms (Views: 20.5ms | ActiveRecord: 3.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:26:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:26:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:26:55 -0700 Processing by Admin::AssetsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Update Asset", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) UPDATE "assets" SET "storage" = '57056_435442738470_535763470_5037008_1205729_o.jpg', "updated_at" = '2012-05-10 00:26:55.829757' WHERE "assets"."id" = 1  (2.7ms) commit transaction Redirected to http://localhost:3000/admin/assets/1 Completed 302 Found in 267ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:26:55 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' 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" = 'Asset' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:26:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:26:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:27:09 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (135.8ms) Completed 200 OK in 144ms (Views: 137.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:27:09 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (95ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:27:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:27:09 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (26ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:27:09 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:27:09 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:27:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:27:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:27:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:27:12 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:27:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.9ms) Completed 200 OK in 49ms (Views: 47.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:27:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:27:25 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (110ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:27:27 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:27:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:27:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:27:38 -0700 Compiled active_admin/editor.js (8ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (74ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:27:39 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.4ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:28:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1297ms) (pid 37001) Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1408.4ms) Completed 200 OK in 1412ms (Views: 1410.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:28:45 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:28:45 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:28:46 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:29:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (52.1ms) Completed 200 OK in 55ms (Views: 53.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:29:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:29:49 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (70ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:29:51 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:29:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:29:59 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:29:59 -0700 Compiled active_admin/editor.js (9ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (94ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:30:00 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:32:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:32:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:32:24 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (99ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:32:26 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:32:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:32:54 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (79ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:32:54 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:32:55 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:33:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:33:57 -0700 Served asset /active_admin.css - 304 Not Modified (30ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:33:57 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (71ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:33:58 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:34:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:34:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:34:22 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (103ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:34:23 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:34:33 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.3ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:34:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:34:33 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:34:35 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:35:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:35:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:35:00 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (145ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:35:02 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 34ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:35:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:35:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:35:16 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (64ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:35:17 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:35:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1154ms) (pid 37001) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1298.3ms) Completed 200 OK in 1302ms (Views: 1299.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:35:34 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:35:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:35:35 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:35:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:35:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:35:41 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:35:41 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 7ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:35:50 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (75.8ms) Completed 200 OK in 79ms (Views: 77.2ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:35:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:35:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:35:50 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:35:50 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:35:50 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:35:52 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (14.1ms) Completed 200 OK in 83ms (Views: 80.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:35:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:35:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:36:07 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:36:08 UTC +00:00], ["storage", "Gv7mJ.jpg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:36:08 UTC +00:00]]  (90.7ms) commit transaction Redirected to http://localhost:3000/admin/assets/2 Completed 302 Found in 705ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/2" for 127.0.0.1 at 2012-05-09 17:36:08 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' 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" = 'Asset' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.6ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:36:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:36:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:36:10 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (91.3ms) Completed 200 OK in 95ms (Views: 92.7ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:36:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:36:10 -0700 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 2012-05-09 17:36:10 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:36:10 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:36:10 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:36:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:36:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:36:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:36:12 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:36:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1141ms) (pid 37001) Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1250.1ms) Completed 200 OK in 1253ms (Views: 1251.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:36:33 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:36:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:36:34 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:36:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1186ms) (pid 37001) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1265.2ms) Completed 200 OK in 1269ms (Views: 1266.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:36:46 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:36:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:36:47 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:37:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1133ms) (pid 37001) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1282.5ms) Completed 200 OK in 1286ms (Views: 1284.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:37:08 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:37:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:37:09 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:37:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1147ms) (pid 37001) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1289.4ms) Completed 200 OK in 1293ms (Views: 1291.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:37:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:37:35 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:37:37 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:38:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1158ms) (pid 37001) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1265.3ms) Completed 200 OK in 1269ms (Views: 1266.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:38:04 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:38:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:38:04 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:38:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:38:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:38:32 -0700 Compiled active_admin/editor.js (11ms) (pid 37001) Compiled active_admin.js (5ms) (pid 37001) Served asset /active_admin.js - 200 OK (73ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:38:33 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:38:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1156ms) (pid 37001) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1291.8ms) Completed 200 OK in 1295ms (Views: 1293.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:38:58 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:38:58 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:38:59 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:39:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:39:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:39:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:39:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (52.9ms) Completed 200 OK in 58ms (Views: 55.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:39:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:39:39 -0700 Compiled active_admin/editor.js (6ms) (pid 37001) Compiled active_admin.js (2ms) (pid 37001) Served asset /active_admin.js - 200 OK (74ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:39:40 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:40:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:40:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:40:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:40:16 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:40:47 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.1ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:41:11 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (78.1ms) Completed 200 OK in 82ms (Views: 80.0ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:12 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:41:12 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:41:12 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:41:12 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:41:13 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:13 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:41:22 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:41:22 UTC +00:00], ["storage", "logo.png"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:41:22 UTC +00:00]]  (3.0ms) commit transaction Redirected to http://localhost:3000/admin/assets/3 Completed 302 Found in 112ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/3" for 127.0.0.1 at 2012-05-09 17:41:22 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "3"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' 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" = 'Asset' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:22 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:41:27 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (48.1ms) Completed 200 OK in 52ms (Views: 49.4ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:41:27 -0700 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 2012-05-09 17:41:27 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:41:27 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:41:28 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.3ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:28 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:41:37 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:41:38 UTC +00:00], ["storage", "download.jpeg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:41:38 UTC +00:00]]  (39.5ms) commit transaction Redirected to http://localhost:3000/admin/assets/4 Completed 302 Found in 410ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/4" for 127.0.0.1 at 2012-05-09 17:41:38 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"4"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "4"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '4' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '4' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (50.4ms) Completed 200 OK in 53ms (Views: 51.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:38 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:41:39 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (88.2ms) Completed 200 OK in 92ms (Views: 89.4ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:39 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:41:39 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:41:39 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:41:39 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:41:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.0ms) Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:41:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:41:40 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:41:42 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 3.3ms | ActiveRecord: 0.2ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:15 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:25 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (219.0ms) Completed 200 OK in 274ms (Views: 227.2ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:26 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:26 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:26 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (4ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:42:26 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:26 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started DELETE "/admin/assets/4" for 127.0.0.1 at 2012-05-09 17:42:28 -0700 Processing by Admin::AssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"4"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "4"]]  (0.1ms) begin transaction SQL (4.3ms) DELETE FROM "assets" WHERE "assets"."id" = ? [["id", 4]]  (50.3ms) commit transaction Redirected to http://localhost:3000/admin/assets Completed 302 Found in 95ms (ActiveRecord: 0.0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:29 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (81.4ms) Completed 200 OK in 85ms (Views: 82.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:29 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:29 -0700 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 2012-05-09 17:42:29 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:29 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started DELETE "/admin/assets/3" for 127.0.0.1 at 2012-05-09 17:42:30 -0700 Processing by Admin::AssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "3"]]  (0.0ms) begin transaction SQL (0.2ms) DELETE FROM "assets" WHERE "assets"."id" = ? [["id", 3]]  (50.0ms) commit transaction Redirected to http://localhost:3000/admin/assets Completed 302 Found in 58ms (ActiveRecord: 0.0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:30 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (73.9ms) Completed 200 OK in 77ms (Views: 75.2ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:31 -0700 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 2012-05-09 17:42:31 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:31 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:31 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started DELETE "/admin/assets/2" for 127.0.0.1 at 2012-05-09 17:42:33 -0700 Processing by Admin::AssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "2"]]  (0.0ms) begin transaction SQL (0.2ms) DELETE FROM "assets" WHERE "assets"."id" = ? [["id", 2]]  (98.1ms) commit transaction Redirected to http://localhost:3000/admin/assets Completed 302 Found in 106ms (ActiveRecord: 0.0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:33 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (75.8ms) Completed 200 OK in 79ms (Views: 77.3ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:33 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:33 -0700 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 2012-05-09 17:42:33 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:33 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started DELETE "/admin/assets/1" for 127.0.0.1 at 2012-05-09 17:42:35 -0700 Processing by Admin::AssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "assets" WHERE "assets"."id" = ? [["id", 1]]  (53.9ms) commit transaction Redirected to http://localhost:3000/admin/assets Completed 302 Found in 92ms (ActiveRecord: 0.0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:35 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (39.9ms) Completed 200 OK in 43ms (Views: 41.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:35 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:35 -0700 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 2012-05-09 17:42:35 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:35 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:42:36 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (16.2ms) Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:39 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:42:39 UTC +00:00], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:42:39 UTC +00:00]]  (3.6ms) commit transaction Redirected to http://localhost:3000/admin/assets/5 Completed 302 Found in 318ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/5" for 127.0.0.1 at 2012-05-09 17:42:39 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"5"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "5"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '5' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '5' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (61.1ms) Completed 200 OK in 66ms (Views: 62.6ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:42 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (44.9ms) Completed 200 OK in 48ms (Views: 46.2ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:42 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:42 -0700 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 2012-05-09 17:42:42 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:42 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:42 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:42:43 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.3ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:43 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:47 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:42:47 UTC +00:00], ["storage", "download.jpeg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:42:47 UTC +00:00]]  (2.8ms) commit transaction Redirected to http://localhost:3000/admin/assets/6 Completed 302 Found in 66ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/6" for 127.0.0.1 at 2012-05-09 17:42:47 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"6"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "6"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '6' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '6' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (48.4ms) Completed 200 OK in 51ms (Views: 49.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:47 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:48 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (71.7ms) Completed 200 OK in 75ms (Views: 73.0ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:48 -0700 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 2012-05-09 17:42:48 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:48 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:42:49 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:49 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:54 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:42:55 UTC +00:00], ["storage", "Gv7mJ.jpg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:42:55 UTC +00:00]]  (49.9ms) commit transaction Redirected to http://localhost:3000/admin/assets/7 Completed 302 Found in 702ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/7" for 127.0.0.1 at 2012-05-09 17:42:55 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"7"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "7"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '7' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '7' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:42:56 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (76.3ms) Completed 200 OK in 80ms (Views: 77.4ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:42:56 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:42:56 -0700 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 2012-05-09 17:42:56 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:42:57 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (39.0ms) Completed 200 OK in 42ms (Views: 40.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:42:57 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:42:57 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:02 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:43:02 UTC +00:00], ["storage", "logo.png"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:43:02 UTC +00:00]]  (2.9ms) commit transaction Redirected to http://localhost:3000/admin/assets/8 Completed 302 Found in 91ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/8" for 127.0.0.1 at 2012-05-09 17:43:02 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"8"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "8"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '8' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '8' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.6ms) Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:03 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (79.2ms) Completed 200 OK in 83ms (Views: 80.4ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:43:03 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:43:03 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:43:03 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:43:04 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.1ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:43:10 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (93.1ms) Completed 200 OK in 98ms (Views: 94.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:43:10 -0700 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 2012-05-09 17:43:10 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:43:10 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:43:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 55ms (Views: 22.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:43:12 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 0.2ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:23 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (78.2ms) Completed 200 OK in 81ms (Views: 79.5ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:23 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:43:23 -0700 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 2012-05-09 17:43:23 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:43:23 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:43:24 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (41.4ms) Completed 200 OK in 44ms (Views: 43.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:24 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:28 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:43:28 UTC +00:00], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:43:28 UTC +00:00]]  (3.5ms) commit transaction Redirected to http://localhost:3000/admin/assets/9 Completed 302 Found in 181ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/9" for 127.0.0.1 at 2012-05-09 17:43:28 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"9"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "9"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '9' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '9' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:28 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:29 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (79.7ms) Completed 200 OK in 83ms (Views: 81.1ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:29 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:43:29 -0700 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 2012-05-09 17:43:29 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:43:29 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:43:30 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.3ms) Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:30 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:35 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:43:35 UTC +00:00], ["storage", "Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:43:35 UTC +00:00]]  (3.3ms) commit transaction Redirected to http://localhost:3000/admin/assets/10 Completed 302 Found in 197ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/10" for 127.0.0.1 at 2012-05-09 17:43:35 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"10"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "10"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '10' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '10' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (53.2ms) Completed 200 OK in 56ms (Views: 54.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:38 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (79.1ms) Completed 200 OK in 83ms (Views: 80.5ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:38 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:43:38 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:43:38 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 17:43:38 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 17:43:39 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.0ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 17:43:44 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 00:43:44 UTC +00:00], ["storage", "download.jpeg"], ["type", nil], ["updated_at", Thu, 10 May 2012 00:43:44 UTC +00:00]]  (3.8ms) commit transaction Redirected to http://localhost:3000/admin/assets/11 Completed 302 Found in 21ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 17:43:44 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 17:43:45 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (86.6ms) Completed 200 OK in 90ms (Views: 88.0ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:45 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:45 -0700 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 2012-05-09 17:43:45 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 17:43:45 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 17:43:45 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:43:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:43:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:43:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:43:47 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:04 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:08 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:11 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:44:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:44:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:44:49 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (65ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:50 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:52 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.6ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:52 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:53 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.6ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:53 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:54 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:55 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:57 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 40ms (Views: 34.0ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:44:58 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:45:01 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:45:04 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:45:15 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:46:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:46:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:46:49 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (107ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:46:51 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:47:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:47:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:47:31 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (102ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:47:32 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:49:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:49:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:49:37 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (118ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:49:39 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:49:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:49:54 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (102ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:49:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:49:56 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:50:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:50:28 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (98ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:50:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:50:30 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 40ms (Views: 33.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:50:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:50:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:50:54 -0700 Compiled active_admin/editor.js (37ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (96ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:50:56 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:51:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.1ms) Completed 200 OK in 48ms (Views: 46.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:51:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:51:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:51:18 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:51:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:51:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:51:48 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (86ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:51:49 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 17:53:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 17:53:07 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 17:53:07 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:53:09 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:06 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:07 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:19 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 43ms (Views: 37.1ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:21 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:21 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:21 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:23 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:25 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:28 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:28 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:30 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:31 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.3ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 5.5ms | ActiveRecord: 0.3ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 17:54:36 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:01:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:01:17 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:01:17 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:01:18 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:03:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:03:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:03:00 -0700 Compiled active_admin/editor.js (37ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (102ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:03:02 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:03:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.8ms) Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:03:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:03:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:03:11 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:08:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:08:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:08:37 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (204ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:08:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:08:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:08:46 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (64ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:08:48 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:10:11 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:10:13 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:11:42 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.2ms) Completed 200 OK in 49ms (Views: 47.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:11:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:11:43 -0700 Compiled active_admin/editor.js (7ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (67ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:11:48 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:11:52 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:12:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:12:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:12:08 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (73ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:12:09 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:17:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:17:05 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (99ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:17:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:17:07 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:17:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.4ms) Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:17:28 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (72ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:17:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:17:29 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:18:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:18:29 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (78ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:18:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:18:33 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:20:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:20:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:20:06 -0700 Compiled active_admin/editor.js (7ms) (pid 37112) Compiled active_admin.js (34ms) (pid 37112) Served asset /active_admin.js - 200 OK (73ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:08 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:12 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:13 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.8ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:14 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:15 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.4ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:17 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:20:19 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 40ms (Views: 34.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:21:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:21:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:21:04 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (74ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:21:05 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:23:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:23:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:23:06 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (104ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:23:09 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:23:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:23:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:23:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:23:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:23:30 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (122ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:23:30 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:23:32 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:23:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:23:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:23:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:24:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:24:57 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (61ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:24:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:24:59 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:25:04 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:25:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:25:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:25:26 -0700 Compiled active_admin/editor.js (39ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (119ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:25:31 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:25:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:25:54 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (3ms) (pid 37112) Served asset /active_admin.js - 200 OK (140ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:25:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:25:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:25:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:25:58 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:26:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:26:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:26:09 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (101ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:26:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:26:24 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (68ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:26:24 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:26:25 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:27:16 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:27:16 -0700 Compiled active_admin/editor.js (6ms) (pid 37112) Compiled active_admin.js (2ms) (pid 37112) Served asset /active_admin.js - 200 OK (104ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:27:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:27:17 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.6ms | ActiveRecord: 0.1ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:27:27 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:27:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:27:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:27:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:27:37 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.7ms | ActiveRecord: 0.2ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-09 18:27:42 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "page"=>{"content"=>"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-10 01:27:42.260872' WHERE "pages"."id" = 1  (55.2ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 65ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-09 18:27:42 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.3ms) Completed 200 OK in 38ms (Views: 35.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:27:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:27:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:27:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.1ms) Completed 200 OK in 51ms (Views: 49.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:27:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:27:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:27:56 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:27:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:27:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:27:59 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:28:12 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 4.5ms | ActiveRecord: 0.1ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:28:28 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (83.6ms) Completed 200 OK in 87ms (Views: 84.9ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:28:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:28:28 -0700 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 2012-05-09 18:28:28 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 18:28:28 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:28:28 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 18:28:29 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (89.8ms) Completed 200 OK in 93ms (Views: 91.2ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:28:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:28:29 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:28:29 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 18:28:29 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 18:28:29 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:28:36 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (83.6ms) Completed 200 OK in 87ms (Views: 84.9ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:28:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:28:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 18:28:36 -0700 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 2012-05-09 18:28:36 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:28:36 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:30:09 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (83.5ms) Completed 200 OK in 87ms (Views: 84.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:30:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:30:10 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 18:30:10 -0700 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 2012-05-09 18:30:10 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:30:10 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:30:22 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (243.1ms) Completed 200 OK in 302ms (Views: 251.7ms | ActiveRecord: 1.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:30:23 -0700 Served asset /active_admin.js - 304 Not Modified (36ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:30:23 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 18:30:23 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:30:23 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:30:29 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (59.4ms) Completed 200 OK in 64ms (Views: 60.8ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:30:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:30:29 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:30:31 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:30:33 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (74.3ms) Completed 200 OK in 78ms (Views: 75.6ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:30:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:30:33 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 18:30:34 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:30:34 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:30:35 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (47.9ms) Completed 200 OK in 51ms (Views: 49.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:30:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:30:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:31:25 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Asset' AND "active_admin_comments"."resource_id" = '11' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:31:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:31:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:31:34 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (21.5ms) Completed 200 OK in 81ms (Views: 30.7ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:31:34 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:31:34 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:32:10 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.2ms) Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:32:21 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (21.9ms) Completed 200 OK in 81ms (Views: 31.1ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:21 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:21 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:32:26 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (136.2ms) Completed 200 OK in 169ms (Views: 137.5ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:26 -0700 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 2012-05-09 18:32:26 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (3ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:32:26 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/assets/9" for 127.0.0.1 at 2012-05-09 18:32:27 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"9"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "9"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.4ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:27 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:32:29 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count  Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (45.2ms) Completed 200 OK in 49ms (Views: 46.4ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:29 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:29 -0700 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 2012-05-09 18:32:29 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:32:29 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/assets/5" for 127.0.0.1 at 2012-05-09 18:32:30 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"5"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "5"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.4ms) Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets" for 127.0.0.1 at 2012-05-09 18:32:31 -0700 Processing by Admin::AssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Exists (0.1ms) SELECT 1 FROM "assets" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" LIMIT 30 OFFSET 0) subquery_for_count Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (72.5ms) Completed 200 OK in 76ms (Views: 74.1ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:32:31 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 18:32:31 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/assets/11" for 127.0.0.1 at 2012-05-09 18:32:34 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"11"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "11"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.5ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 18:32:35 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (93.7ms) Completed 200 OK in 99ms (Views: 95.2ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 18:32:36 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-09 18:32:36 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:32:36 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:32:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (31.8ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (54.9ms) Completed 200 OK in 60ms (Views: 24.9ms | ActiveRecord: 32.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:32:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:32:37 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:32:39 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 74ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:34:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.8ms) Completed 200 OK in 49ms (Views: 47.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:34:07 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:34:07 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (104ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:34:08 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:34:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1327ms) (pid 37579) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1397.9ms) Completed 200 OK in 1401ms (Views: 1399.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:34:47 -0700 Served asset /active_admin.css - 200 OK (13ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:34:47 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (93ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:34:48 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:35:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:35:22 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:35:22 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (102ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:35:23 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:36:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1197ms) (pid 37579) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1326.4ms) Completed 200 OK in 1330ms (Views: 1328.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:36:03 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (69ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:36:04 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:36:04 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:37:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1193ms) (pid 37579) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1290.4ms) Completed 200 OK in 1294ms (Views: 1292.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:37:29 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:37:29 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:37:31 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 18:37:36 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (15.5ms) Completed 200 OK in 86ms (Views: 83.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:37:37 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:37:40 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:38:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.7ms) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:38:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:38:47 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:38:48 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:39:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:39:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:39:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:39:23 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:39:49 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.2ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-09 18:39:50 -0700 Processing by Admin::AssetsController#new as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (43.7ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:39:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:39:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started POST "/admin/assets" for 127.0.0.1 at 2012-05-09 18:39:55 -0700 Processing by Admin::AssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "asset"=>{"storage"=>#>}, "commit"=>"Create Asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 10 May 2012 01:39:55 UTC +00:00], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", nil], ["updated_at", Thu, 10 May 2012 01:39:55 UTC +00:00]]  (2.9ms) commit transaction Redirected to http://localhost:3000/admin/assets/12 Completed 302 Found in 26ms (ActiveRecord: 0.0ms) Started GET "/admin/assets/12" for 127.0.0.1 at 2012-05-09 18:39:55 -0700 Processing by Admin::AssetsController#show as HTML Parameters: {"id"=>"12"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."id" = ? LIMIT 1 [["id", "12"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.1ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:39:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:39:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-09 18:39:57 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (90.7ms) Completed 200 OK in 94ms (Views: 92.0ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:39:57 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:39:57 -0700 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 2012-05-09 18:39:57 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-09 18:39:57 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-09 18:39:57 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:39:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:39:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:39:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:40:00 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:41:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.2ms) Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:41:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:41:47 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (73ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:41:48 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-09 18:41:53 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "page"=>{"content"=>"\"\"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.3ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-10 01:41:53.964057' WHERE "pages"."id" = 1  (53.2ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 64ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-09 18:41:54 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.7ms) Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:41:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:41:54 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:41:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:41:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:41:55 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:42:04 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.1ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:43:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:43:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:43:26 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (99ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:43:27 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:43:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:43:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:43:59 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (102ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:44:01 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:51:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:51:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:51:08 -0700 Compiled active_admin/editor.js (39ms) (pid 37579) Compiled active_admin.js (3ms) (pid 37579) Served asset /active_admin.js - 200 OK (108ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:51:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.2ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:51:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:51:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:51:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:51:29 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:51:29 -0700 Compiled active_admin/editor.js (7ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (105ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:51:30 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:51:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:51:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:51:41 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (3ms) (pid 37579) Served asset /active_admin.js - 200 OK (67ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:51:42 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:52:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.1ms) Completed 200 OK in 48ms (Views: 45.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:52:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:52:27 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (67ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:53:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.2ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:53:08 -0700 Compiled active_admin/editor.js (6ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (94ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:53:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:53:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.9ms) Completed 200 OK in 48ms (Views: 46.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:53:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:53:37 -0700 Compiled active_admin/editor.js (8ms) (pid 37579) Compiled active_admin.js (2ms) (pid 37579) Served asset /active_admin.js - 200 OK (75ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:53:38 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-09 18:53:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:53:58 -0700 Compiled active_admin/editor.js (7ms) (pid 37579) Compiled active_admin.js (3ms) (pid 37579) Served asset /active_admin.js - 200 OK (68ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:53:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-09 18:53:59 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-09 18:54:19 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "page"=>{"content"=>"\"\"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-10 01:54:19.612737' WHERE "pages"."id" = 1  (49.5ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 58ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-09 18:54:19 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.4ms) Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-09 18:54:19 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-09 18:54:19 -0700 Compiled active_admin/editor.js (38ms) (pid 37579) Compiled active_admin.js (3ms) (pid 37579) Served asset /active_admin.js - 200 OK (68ms) Started GET "/" for 127.0.0.1 at 2012-05-10 14:29:41 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (25.3ms) Started GET "/admin" for 127.0.0.1 at 2012-05-10 14:29:44 -0700 Processing by Admin::DashboardController#index as HTML AdminUser Load (10.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (68.9ms) Completed 200 OK in 129ms (Views: 79.9ms | ActiveRecord: 11.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:29:44 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (4ms) (pid 43362) Served asset /active_admin.js - 200 OK (195ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:29:45 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-10 14:29:46 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (8.8ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (319.4ms) Completed 200 OK in 424ms (Views: 329.6ms | ActiveRecord: 9.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:29:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:29:47 -0700 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 2012-05-10 14:29:47 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (15ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-10 14:29:47 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (14ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 14:29:47 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:29:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (17.3ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (99.0ms) Completed 200 OK in 165ms (Views: 144.2ms | ActiveRecord: 17.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:29:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:29:49 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:29:50 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (12.4ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 84ms (Views: 51.8ms | ActiveRecord: 12.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:31:16 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:31:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:31:16 -0700 Compiled active_admin/editor.js (7ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (71ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:31:19 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 5.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:31:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:31:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:31:40 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (103ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:31:42 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:32:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:32:43 -0700 Compiled active_admin/editor.js (7ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (175ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:32:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:32:45 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 37ms (Views: 30.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:32:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:32:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:32:49 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:33:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:33:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:33:13 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (109ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:33:14 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:35:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:35:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:35:25 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (93ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:35:26 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 37ms (Views: 30.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:36:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:36:46 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (74ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:36:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:36:47 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:36:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.2ms) Completed 200 OK in 47ms (Views: 45.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:36:59 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (70ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:36:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:37:01 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.1ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:37:18 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:37:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:37:18 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (59ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:37:20 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 38ms (Views: 31.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:37:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:37:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:37:27 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:37:28 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:37:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:37:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:37:40 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (98ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:37:42 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:39:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:39:45 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:39:45 -0700 Compiled active_admin/editor.js (5ms) (pid 43362) Compiled active_admin.js (4ms) (pid 43362) Served asset /active_admin.js - 200 OK (166ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:39:46 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:39:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:39:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:39:55 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (73ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:39:56 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:40:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:40:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:40:06 -0700 Compiled active_admin/editor.js (34ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (102ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:40:07 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:40:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:40:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:40:49 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (3ms) (pid 43362) Served asset /active_admin.js - 200 OK (73ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:40:50 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:43:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:43:01 -0700 Compiled active_admin/editor.js (34ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (95ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:43:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:43:02 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:43:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:43:05 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:43:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:43:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:43:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:43:22 -0700 Compiled active_admin/editor.js (6ms) (pid 43362) Compiled active_admin.js (2ms) (pid 43362) Served asset /active_admin.js - 200 OK (64ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:43:23 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/assets.json" for 127.0.0.1 at 2012-05-10 14:43:37 -0700 Processing by Admin::AssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Asset Load (0.2ms) SELECT "assets".* FROM "assets" ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 14:43:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 14:43:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 14:43:50 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/" for 127.0.0.1 at 2012-05-10 17:25:31 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.9ms) Started GET "/admin" for 127.0.0.1 at 2012-05-10 17:25:33 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (300.0ms) Completed 200 OK in 359ms (Views: 320.9ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:25:34 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:25:34 -0700 Served asset /active_admin.js - 304 Not Modified (190ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:25:37 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (235.3ms) Completed 200 OK in 373ms (Views: 246.6ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:25:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:25:37 -0700 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 2012-05-10 17:25:37 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:25:37 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-10 17:25:40 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (198.3ms) Completed 200 OK in 203ms (Views: 199.5ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:25:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:25:40 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-10 17:25:40 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:25:40 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:25:40 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:26:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (17.3ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (88.1ms) Completed 200 OK in 265ms (Views: 244.5ms | ActiveRecord: 17.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:26:12 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:26:12 -0700 Compiled active_admin/editor.js (6ms) (pid 48574) Compiled active_admin.js (2ms) (pid 48574) Served asset /active_admin.js - 200 OK (56ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 17:26:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 0.7ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:26:16 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (27.0ms) Completed 200 OK in 96ms (Views: 86.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:26:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:26:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:26:23 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (16.0ms) INSERT INTO "assets" ("created_at", "storage", "type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 11 May 2012 00:26:23 UTC +00:00], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 00:26:23 UTC +00:00]]  (5.4ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/13 Completed 302 Found in 164ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/13" for 127.0.0.1 at 2012-05-10 17:26:23 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"13"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "13"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.2ms) Completed 200 OK in 23ms (Views: 19.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:26:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:26:24 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-10 17:26:27 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (91.3ms) Completed 200 OK in 95ms (Views: 92.9ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:26:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:26:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-10 17:26:27 -0700 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 2012-05-10 17:26:27 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:26:27 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:26:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:26:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:26:28 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 17:26:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:26:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:26:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:26:39 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-10 17:29:09 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (93.7ms) Completed 200 OK in 121ms (Views: 95.2ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:29:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:29:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-10 17:29:09 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:29:09 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:29:09 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-10 17:29:12 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (5.3ms) Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:29:12 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:29:12 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-10 17:29:21 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (39.6ms) Completed 200 OK in 92ms (Views: 49.6ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:29:21 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:29:21 -0700 Served asset /active_admin.js - 304 Not Modified (13ms) Started GET "/admin" for 127.0.0.1 at 2012-05-10 17:29:51 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (30.2ms) Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:29:51 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:29:51 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-10 17:30:00 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (40.5ms) Completed 200 OK in 94ms (Views: 51.5ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:30:00 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:30:00 -0700 Served asset /active_admin.js - 304 Not Modified (14ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:30:01 -0700 Served asset /active_admin/nested_menu_arrow.gif - 200 OK (170ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:30:02 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (31ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:30:02 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.1ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (137.6ms) Completed 200 OK in 146ms (Views: 139.0ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:30:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:30:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:30:02 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:30:02 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:30:04 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (17.8ms) Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:30:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:30:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:30:08 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction  (0.0ms) rollback transaction Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (41.1ms) Completed 200 OK in 52ms (Views: 42.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:30:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:30:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-10 17:30:23 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (94.5ms) Completed 200 OK in 100ms (Views: 96.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:30:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:30:24 -0700 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 2012-05-10 17:30:24 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-10 17:30:24 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:30:24 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:30:25 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (74.7ms) Completed 200 OK in 78ms (Views: 76.0ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:30:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:30:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:30:25 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:30:25 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateAdminNotes (20120430130552) Migrating to MoveAdminNotesToComments (20120430130553) Migrating to DeviseCreateAdminUsers (20120430200549) Migrating to CreatePages (20120430201522) Migrating to CreateAssets (20120510000716) Migrating to AddDimensionsToAsset (20120511003700)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "assets" ADD "dimensions" varchar(255)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120511003700')  (54.4ms) commit transaction  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("active_admin_comments")  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')  (0.0ms) PRAGMA index_list("admin_users")  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_admin_users_on_email')  (0.0ms) PRAGMA index_list("assets")  (0.0ms) PRAGMA index_list("pages") Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:37:40 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (190.7ms) Completed 200 OK in 228ms (Views: 201.4ms | ActiveRecord: 1.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:37:40 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:37:40 -0700 Served asset /active_admin.js - 304 Not Modified (11ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:37:40 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:37:41 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:41 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets/13" for 127.0.0.1 at 2012-05-10 17:37:41 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"13"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "13"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.0ms) Completed 200 OK in 40ms (Views: 10.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:37:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:37:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:42 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:44 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started DELETE "/admin/image_assets/13" for 127.0.0.1 at 2012-05-10 17:37:46 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"13"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "13"]]  (0.0ms) begin transaction SQL (3.4ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 13]]  (18.3ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 61ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:37:46 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (84.1ms) Completed 200 OK in 88ms (Views: 85.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:37:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:37:46 -0700 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 2012-05-10 17:37:47 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:37:47 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:47 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:47 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:37:48 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (81.2ms) Completed 200 OK in 85ms (Views: 82.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:37:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:37:49 -0700 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 2012-05-10 17:37:49 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:49 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:37:49 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:37:49 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (51.7ms) Completed 200 OK in 56ms (Views: 53.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:37:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:37:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:37:50 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:38:00 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>, "dimensions"=>""}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.6ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 00:38:00 UTC +00:00], ["dimensions", "--- ''\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 00:38:00 UTC +00:00]]  (3.8ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/14 Completed 302 Found in 104ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/14" for 127.0.0.1 at 2012-05-10 17:38:00 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"14"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "14"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.6ms) Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:38:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:38:00 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:38:00 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/14/edit" for 127.0.0.1 at 2012-05-10 17:38:02 -0700 Processing by Admin::ImageAssetsController#edit as HTML Parameters: {"id"=>"14"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "14"]] ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", 14]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.5ms) Completed 200 OK in 26ms (Views: 23.2ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:38:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:38:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:38:02 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:38:03 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:38:10 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (91.2ms) Completed 200 OK in 95ms (Views: 92.3ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:38:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:38:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:38:10 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:38:10 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:38:10 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/14" for 127.0.0.1 at 2012-05-10 17:40:49 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"14"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "14"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (23.4ms) Completed 200 OK in 89ms (Views: 33.2ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:40:49 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:40:49 -0700 Served asset /active_admin.js - 304 Not Modified (13ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:40:50 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started DELETE "/admin/image_assets/14" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"14"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "14"]]  (0.0ms) begin transaction SQL (3.4ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 14]]  (2.4ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 20ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (162.2ms) Completed 200 OK in 171ms (Views: 164.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:40:52 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:40:53 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (82.5ms) Completed 200 OK in 86ms (Views: 84.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:40:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:40:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:40:53 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:40:53 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:40:53 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:40:54 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (51.8ms) Completed 200 OK in 56ms (Views: 53.5ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:40:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:40:54 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:40:54 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:40:58 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>, "dimensions"=>""}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 00:40:58 UTC +00:00], ["dimensions", "--- ''\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 00:40:58 UTC +00:00]]  (2.9ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/15 Completed 302 Found in 73ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/15" for 127.0.0.1 at 2012-05-10 17:40:58 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"15"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.4ms) Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:40:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:40:58 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:40:58 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/15/edit" for 127.0.0.1 at 2012-05-10 17:41:00 -0700 Processing by Admin::ImageAssetsController#edit as HTML Parameters: {"id"=>"15"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]] ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", 15]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.8ms) Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:41:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:41:00 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:41:00 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/15/edit" for 127.0.0.1 at 2012-05-10 17:41:48 -0700 Processing by Admin::ImageAssetsController#edit as HTML Parameters: {"id"=>"15"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]] ImageAsset Load (3.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", 15]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (103.6ms) Completed 200 OK in 146ms (Views: 111.1ms | ActiveRecord: 4.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:41:48 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:41:48 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:41:48 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started PUT "/admin/image_assets/15" for 127.0.0.1 at 2012-05-10 17:41:54 -0700 Processing by Admin::ImageAssetsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>}, "commit"=>"Update Image asset", "id"=>"15"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]]  (0.1ms) begin transaction ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", 15]]  (0.3ms) UPDATE "assets" SET "storage" = 'download.jpeg', "dimensions" = '--- :width: 259 :height: 194 ', "updated_at" = '2012-05-11 00:41:54.160032' WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = 15  (2.6ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/15 Completed 302 Found in 104ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/15" for 127.0.0.1 at 2012-05-10 17:41:54 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"15"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.3ms) Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:41:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:41:54 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:41:54 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:41:57 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:41:58 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (125.3ms) Completed 200 OK in 134ms (Views: 126.3ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:41:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:41:58 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:41:58 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:41:58 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:41:58 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/15" for 127.0.0.1 at 2012-05-10 17:41:59 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"15"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (36.7ms) Completed 200 OK in 40ms (Views: 38.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:41:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:41:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:41:59 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started DELETE "/admin/image_assets/15" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"15"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "15"]]  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 15]]  (49.6ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 59ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (81.4ms) Completed 200 OK in 85ms (Views: 83.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:42:03 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:42:04 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (81.8ms) Completed 200 OK in 85ms (Views: 83.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:42:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:42:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:42:04 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:42:04 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:42:04 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:42:05 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (14.0ms) Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:42:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:42:05 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:42:05 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:42:09 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 00:42:09 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 00:42:09 UTC +00:00]]  (3.3ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/16 Completed 302 Found in 67ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/16" for 127.0.0.1 at 2012-05-10 17:42:09 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"16"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "16"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.5ms) Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:42:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:42:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:42:10 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:43:35 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (196.4ms) Completed 200 OK in 254ms (Views: 204.9ms | ActiveRecord: 1.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:35 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:35 -0700 Served asset /active_admin.js - 304 Not Modified (37ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 17:43:36 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:43:36 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:43:36 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:43:37 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (41.7ms) Completed 200 OK in 46ms (Views: 43.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:37 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:43:38 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (85.5ms) Completed 200 OK in 89ms (Views: 86.7ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:38 -0700 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 2012-05-10 17:43:38 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:43:38 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/16" for 127.0.0.1 at 2012-05-10 17:43:39 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"16"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "16"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.8ms) Completed 200 OK in 14ms (Views: 10.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:39 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started DELETE "/admin/image_assets/16" for 127.0.0.1 at 2012-05-10 17:43:42 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "id"=>"16"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "16"]]  (0.0ms) begin transaction SQL (3.5ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 16]]  (53.2ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 71ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:43:42 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (84.3ms) Completed 200 OK in 88ms (Views: 86.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:42 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:43:42 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:43:42 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:43:43 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (80.4ms) Completed 200 OK in 84ms (Views: 82.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:43 -0700 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 2012-05-10 17:43:43 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:43:43 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-10 17:43:44 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.4ms) Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-10 17:43:50 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.6ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 00:43:50 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 00:43:50 UTC +00:00]]  (2.7ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/17 Completed 302 Found in 100ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/17" for 127.0.0.1 at 2012-05-10 17:43:50 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"17"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "17"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.8ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:43:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:43:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/image_assets/17.json" for 127.0.0.1 at 2012-05-10 17:43:54 -0700 Processing by Admin::ImageAssetsController#show as JSON Parameters: {"id"=>"17"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "17"]] Completed 200 OK in 8ms (Views: 1.2ms | ActiveRecord: 0.0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-10 17:44:02 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (120.9ms) Completed 200 OK in 126ms (Views: 122.4ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:44:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:44:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-10 17:44:02 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-10 17:44:02 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-10 17:44:02 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:44:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.2ms) Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:44:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:44:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-10 17:44:11 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/t3h6GEok5Bf8455bD0Q55X4wQrvgCcUCA4iC2+AdbA=", "page"=>{"content"=>"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 00:44:11.461408' WHERE "pages"."id" = 1  (50.8ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 61ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-10 17:44:11 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.5ms) Completed 200 OK in 12ms (Views: 9.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:44:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:44:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:44:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.0ms) Completed 200 OK in 48ms (Views: 46.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:44:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:44:13 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 17:44:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:50:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:50:06 -0700 Error compiling asset active_admin.js: LoadError: cannot load such file -- coffee_script (in /Users/ejholmes/Source/active_admin_editor/app/assets/javascripts/active_admin/editor/core.js.coffee) Served asset /active_admin.js - 500 Internal Server Error Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:50:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:50:06 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:50:10 -0700 Error compiling asset active_admin.js: LoadError: cannot load such file -- coffee_script (in /Users/ejholmes/Source/active_admin_editor/app/assets/javascripts/active_admin/editor/core.js.coffee) Served asset /active_admin.js - 500 Internal Server Error Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:50:37 -0700 Error compiling asset active_admin.js: LoadError: cannot load such file -- coffee_script (in /Users/ejholmes/Source/active_admin_editor/app/assets/javascripts/active_admin/editor/core.js.coffee) Served asset /active_admin.js - 500 Internal Server Error Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:51:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (113.0ms) Completed 200 OK in 172ms (Views: 120.1ms | ActiveRecord: 4.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:51:46 -0700 Compiled active_admin/editor/core.js (494ms) (pid 50214) Compiled active_admin/editor.js (532ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (596ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:52:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.6ms) Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:52:00 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:52:00 -0700 Served asset /active_admin.js - 200 OK (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:52:00 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:52:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.8ms) Completed 200 OK in 50ms (Views: 47.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:52:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:52:25 -0700 Compiled active_admin/editor/core.js (101ms) (pid 50214) Compiled active_admin/editor.js (45ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (177ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:52:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:52:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.1ms) Completed 200 OK in 50ms (Views: 47.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:52:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:52:36 -0700 Compiled active_admin/editor/core.js (104ms) (pid 50214) Compiled active_admin/editor.js (43ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (178ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:52:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:52:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.1ms) Completed 200 OK in 49ms (Views: 46.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:52:48 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:52:48 -0700 Compiled active_admin/editor/core.js (98ms) (pid 50214) Compiled active_admin/editor.js (41ms) (pid 50214) Compiled active_admin.js (2ms) (pid 50214) Served asset /active_admin.js - 200 OK (170ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:52:48 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:53:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.3ms) Completed 200 OK in 50ms (Views: 47.5ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:53:03 -0700 Compiled active_admin/editor/core.js (98ms) (pid 50214) Compiled active_admin/editor.js (43ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (174ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:53:03 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:53:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 17:54:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.2ms) Completed 200 OK in 50ms (Views: 47.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 17:54:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 17:54:40 -0700 Compiled active_admin/editor/core.js (103ms) (pid 50214) Compiled active_admin/editor.js (8ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (177ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 17:54:40 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:07:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.8ms) Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:07:55 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:07:55 -0700 Compiled active_admin/editor/core.js (144ms) (pid 50214) Compiled active_admin/editor.js (10ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (187ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:07:56 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:07:58 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 37ms (Views: 17.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:08:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.4ms) Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:08:45 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:08:45 -0700 Compiled active_admin/editor/core.js (114ms) (pid 50214) Compiled active_admin/editor.js (9ms) (pid 50214) Compiled active_admin.js (3ms) (pid 50214) Served asset /active_admin.js - 200 OK (189ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:08:45 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:08:46 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:09:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.8ms) Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:09:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:09:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:09:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:09:53 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:10:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:10:06 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:10:06 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:10:06 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:10:08 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:11:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 54ms (Views: 22.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:11:05 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:11:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:06 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:09 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:11:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:11:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:11:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:11 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:11:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.6ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (108.0ms) Completed 200 OK in 167ms (Views: 114.4ms | ActiveRecord: 4.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:11:29 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:11:29 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:11:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 35ms (Views: 16.7ms | ActiveRecord: 0.4ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:39 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:11:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.0ms) Completed 200 OK in 49ms (Views: 46.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:11:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:11:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:11:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:11:48 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:12:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:12:17 -0700 Served asset /active_admin.js - 304 Not Modified (30ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:12:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:12:17 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:13:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (50.9ms) Completed 200 OK in 84ms (Views: 53.3ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:13:57 -0700 Compiled active_admin/editor/core.js (110ms) (pid 50345) Compiled active_admin/editor.js (10ms) (pid 50345) Compiled active_admin.js (3ms) (pid 50345) Served asset /active_admin.js - 200 OK (211ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:13:57 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:13:58 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:14:00 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:14:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.5ms) Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:14:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:14:01 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:14:02 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:14:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.7ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (109.3ms) Completed 200 OK in 170ms (Views: 115.3ms | ActiveRecord: 4.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:14:12 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:14:12 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:14:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:14:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 32ms (Views: 15.9ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:14:19 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:14:21 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (43.7ms) Completed 200 OK in 47ms (Views: 45.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:14:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:14:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:14:22 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:15:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:15:14 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:15:14 -0700 Compiled active_admin/editor/core.js (111ms) (pid 50401) Compiled active_admin/editor.js (11ms) (pid 50401) Compiled active_admin.js (3ms) (pid 50401) Served asset /active_admin.js - 200 OK (212ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:15:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:15:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:15:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.9ms) Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:15:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:15:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:15:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:18:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.3ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (106.6ms) Completed 200 OK in 165ms (Views: 112.7ms | ActiveRecord: 4.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:18:37 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:18:37 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:18:37 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:18:38 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 33ms (Views: 16.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:18:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.9ms) Completed 200 OK in 49ms (Views: 47.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:18:43 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:18:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:18:43 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:18:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:18:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:18:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:18:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:18:48 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:19:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.9ms) Completed 200 OK in 82ms (Views: 51.3ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:19:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:19:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:19:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (102.9ms) Completed 200 OK in 139ms (Views: 109.4ms | ActiveRecord: 4.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:19:25 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:19:25 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:19:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:19:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 58ms (Views: 15.7ms | ActiveRecord: 0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:21:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1560ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1650.9ms) Completed 200 OK in 1655ms (Views: 1653.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:21:36 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:21:36 -0700 Compiled active_admin/editor/core.js (112ms) (pid 50514) Compiled active_admin/editor.js (9ms) (pid 50514) Compiled active_admin.js (3ms) (pid 50514) Served asset /active_admin.js - 200 OK (190ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:21:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:21:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 2.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:22:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1252ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1342.6ms) Completed 200 OK in 1346ms (Views: 1344.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:22:24 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:22:24 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:22:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:22:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:22:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (51.8ms) Completed 200 OK in 55ms (Views: 53.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:22:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:22:28 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:22:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:22:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} Completed 401 Unauthorized in 0ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-10 18:22:46 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (29.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (110.0ms) Completed 200 OK in 243ms (Views: 242.3ms | ActiveRecord: 0.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /jquery-ui.js - 304 Not Modified (7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /jquery.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/core.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/editor/core.js - 200 OK (3ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/application.js - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/base.js - 304 Not Modified (8ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 304 Not Modified (33ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/editor/quicksave.js - 304 Not Modified (3ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin/editor.js - 200 OK (6ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-10 18:22:47 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-10 18:22:52 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "current_sign_in_at" = '2012-05-11 01:22:52.520488', "sign_in_count" = 2, "updated_at" = '2012-05-11 01:22:52.521496' WHERE "admin_users"."id" = 1  (809.5ms) commit transaction Redirected to http://localhost:3000/admin/pages/1/edit Completed 302 Found in 1034ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:22:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:22:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:22:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:22:54 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:22:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:23:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:23:36 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:23:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:23:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-10 18:23:36 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:23:42 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1211ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1328.5ms) Completed 200 OK in 1332ms (Views: 1330.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:23:44 -0700 Served asset /active_admin.css - 200 OK (13ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:23:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:23:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:23:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:23:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1184ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1318.9ms) Completed 200 OK in 1323ms (Views: 1320.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:23:56 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:23:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:23:56 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:23:57 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:24:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1253ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1328.7ms) Completed 200 OK in 1332ms (Views: 1330.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:24:10 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:24:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:24:10 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:24:11 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:24:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1210ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1280.7ms) Completed 200 OK in 1284ms (Views: 1282.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:24:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:24:33 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:24:34 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:24:35 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:24:51 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1248ms) (pid 50514) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1282.0ms) Completed 200 OK in 1286ms (Views: 1283.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:24:53 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:24:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:24:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:24:54 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:25:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:25:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:25:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:25:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:26:21 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.4ms) Completed 200 OK in 52ms (Views: 50.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:26:21 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:26:21 -0700 Compiled active_admin/editor/core.js (114ms) (pid 50514) Compiled active_admin/editor.js (9ms) (pid 50514) Compiled active_admin.js (3ms) (pid 50514) Served asset /active_admin.js - 200 OK (193ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:26:21 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:26:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:29:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.1ms) Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:29:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:29:17 -0700 Compiled active_admin/editor/core.js (114ms) (pid 50514) Compiled active_admin/editor.js (9ms) (pid 50514) Compiled active_admin.js (3ms) (pid 50514) Served asset /active_admin.js - 200 OK (192ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:29:17 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:29:18 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:39:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.4ms) Completed 200 OK in 57ms (Views: 24.9ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:39:14 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:39:14 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 50514) Compiled active_admin/editor/core.js (170ms) (pid 50514) Compiled active_admin/editor.js (9ms) (pid 50514) Compiled active_admin.js (3ms) (pid 50514) Served asset /active_admin.js - 200 OK (277ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:39:15 -0700 ActionController::RoutingError (No route matches [GET] "/admin/image_assets.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:39:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (82.7ms) Completed 200 OK in 142ms (Views: 114.5ms | ActiveRecord: 4.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:39:26 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:39:26 -0700 Served asset /active_admin.js - 304 Not Modified (12ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:39:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:39:27 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 59ms (Views: 16.5ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:39:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:39:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:39:48 -0700 Compiled active_admin/editor/core.js (117ms) (pid 50681) Compiled active_admin/editor.js (9ms) (pid 50681) Compiled active_admin.js (35ms) (pid 50681) Served asset /active_admin.js - 200 OK (190ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:39:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:39:50 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:39:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.5ms) Completed 200 OK in 48ms (Views: 46.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:39:57 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:39:57 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:39:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:40:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.1ms) Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:40:23 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:40:23 -0700 Compiled active_admin/editor/core.js (113ms) (pid 50681) Compiled active_admin/editor.js (9ms) (pid 50681) Compiled active_admin.js (3ms) (pid 50681) Served asset /active_admin.js - 200 OK (221ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:40:23 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:40:24 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:40:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:40:35 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:40:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:40:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:40:36 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:42:18 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (106.0ms) Completed 200 OK in 165ms (Views: 112.7ms | ActiveRecord: 4.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:42:18 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:42:18 -0700 Served asset /active_admin.js - 304 Not Modified (17ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:42:19 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:42:20 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 36ms (Views: 17.7ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:42:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.5ms) Completed 200 OK in 48ms (Views: 46.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:42:26 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:42:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:42:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:42:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:44:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (82.3ms) Completed 200 OK in 143ms (Views: 112.9ms | ActiveRecord: 4.1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:44:29 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:44:29 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:44:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:44:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 56ms (Views: 15.3ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:44:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:50:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:50:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:50:17 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:50:17 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:50:18 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:52:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (106.8ms) Completed 200 OK in 165ms (Views: 113.3ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:52:26 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 50866) Compiled active_admin/editor/core.js (215ms) (pid 50866) Compiled active_admin/editor.js (10ms) (pid 50866) Compiled active_admin.js (3ms) (pid 50866) Served asset /active_admin.js - 200 OK (291ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:52:26 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:52:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:52:27 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 39ms (Views: 18.0ms | ActiveRecord: 0.4ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-10 18:52:44 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "asset_scale"=>"on", "page"=>{"content"=>"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.3ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 01:52:44.287111' WHERE "pages"."id" = 1  (2.4ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 15ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-10 18:52:44 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.9ms) Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:52:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:52:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:52:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:52:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.3ms) Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:52:45 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:52:45 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:52:45 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:52:47 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-10 18:57:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (108.8ms) Completed 200 OK in 168ms (Views: 115.4ms | ActiveRecord: 4.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-10 18:57:18 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:57:18 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 50929) Compiled active_admin/editor/core.js (120ms) (pid 50929) Compiled active_admin/editor.js (14ms) (pid 50929) Compiled active_admin.js (3ms) (pid 50929) Served asset /active_admin.js - 200 OK (227ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-10 18:57:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-10 18:57:19 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 61ms (Views: 40.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-10 18:57:33 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/" for 127.0.0.1 at 2012-05-11 08:42:24 -0700 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.5ms) Started GET "/admin" for 127.0.0.1 at 2012-05-11 08:42:28 -0700 Processing by Admin::DashboardController#index as HTML AdminUser Load (10.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (78.0ms) Completed 200 OK in 159ms (Views: 95.9ms | ActiveRecord: 11.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:42:28 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (212ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:42:28 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:42:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (10ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 08:42:29 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (3ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 08:42:30 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (7.6ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (310.0ms) Completed 200 OK in 407ms (Views: 321.3ms | ActiveRecord: 8.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:42:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:42:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 08:42:31 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 08:42:31 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (14ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 08:42:31 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-11 08:42:32 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (59.0ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (172.9ms) Completed 200 OK in 178ms (Views: 115.4ms | ActiveRecord: 60.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:42:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:42:32 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:42:33 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 08:42:33 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 08:42:33 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-11 08:42:33 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (12ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:42:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (17.0ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (88.2ms) Completed 200 OK in 146ms (Views: 126.0ms | ActiveRecord: 17.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:42:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:42:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:42:34 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 08:42:36 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 79ms (Views: 2.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:42:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:42:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:42:43 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:42:43 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 08:42:48 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:54:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:54:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:54:17 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 54547) Compiled active_admin/editor.js (38ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (66ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:54:17 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 08:54:18 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 08:54:19 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:54:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:54:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:54:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:54:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 08:54:40 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:54:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:54:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:54:41 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (67ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:54:41 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 08:54:43 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:54:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:54:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:54:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:54:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:55:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.8ms) Completed 200 OK in 50ms (Views: 47.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:55:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:55:04 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (63ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:55:04 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 08:55:05 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 08:55:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 08:55:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 08:55:11 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 08:55:11 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:00:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.0ms) Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:00:15 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (63ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:00:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:00:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:00:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:00:37 -0700 Compiled active_admin/editor/core.js (719ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (799ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:00:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:00:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:00:39 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:00:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.6ms) Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:00:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:00:50 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:00:50 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:03:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.0ms) Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:03:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:03:03 -0700 Compiled active_admin/editor/core.js (110ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (212ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:03:04 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:03:05 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:04:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.1ms) Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:04:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:04:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:04:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:04:12 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:04:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:04:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:04:48 -0700 Error compiling asset active_admin.js: Sprockets::FileNotFound: couldn't find file 'active_admin/editor/wysihtml5.min' (in /Users/ejholmes/Source/active_admin_editor/app/assets/javascripts/active_admin/editor.js:1) Served asset /active_admin.js - 500 Internal Server Error Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:04:48 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:04:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:04:50 -0700 Error compiling asset active_admin.js: Sprockets::FileNotFound: couldn't find file 'active_admin/editor/wysihtml5.min' (in /Users/ejholmes/Source/active_admin_editor/app/assets/javascripts/active_admin/editor.js:1) Served asset /active_admin.js - 500 Internal Server Error Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:04:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:04:50 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:05:37 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:05:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:05:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:05:38 -0700 Compiled active_admin/editor/wysihtml5.min.js (30ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (93ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:05:39 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:05:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:06:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:06:09 -0700 Compiled active_admin/editor/wysihtml5.min.js (29ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (99ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:06:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:06:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:06:11 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:06:21 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:06:21 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:06:21 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:06:22 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:06:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:06:39 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:06:39 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (99ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:06:39 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:06:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:06:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.6ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:06:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:06:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:06:46 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:07:21 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.7ms) Completed 200 OK in 49ms (Views: 47.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:07:21 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (68ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:07:21 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:07:22 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:07:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:08:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.7ms) Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:08:01 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (73ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:08:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:08:01 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:08:02 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:09:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:09:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:09:21 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (103ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:09:21 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:09:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:09:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:09:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:09:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:09:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:10:42 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:10:42 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (104ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:10:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:10:42 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:10:44 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:14:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:14:05 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (71ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:14:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:14:05 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:14:08 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:14:16 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:14:16 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:14:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:14:16 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:15:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:15:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:15:40 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (36ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (71ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:15:41 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:15:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:17:10 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:19:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:19:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:19:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.9ms) Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:19:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:19:31 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (71ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:19:31 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:19:32 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:24:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:24:38 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (92ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:24:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:24:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:24:39 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:24:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:24:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:24:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:24:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:25:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:25:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:25:25 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (97ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:25:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:25:26 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:29:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:29:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:29:11 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (39ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (73ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:29:11 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:29:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:30:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:30:12 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:30:13 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (70ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:30:13 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:30:14 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:30:34 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:30:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:30:35 -0700 Compiled active_admin/editor/wysihtml5.min.js (31ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (103ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:30:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:30:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:30:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:32:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.1ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:32:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:32:38 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (72ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:32:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:32:39 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:33:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:33:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:33:49 -0700 Compiled active_admin/editor/wysihtml5.min.js (30ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (100ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:33:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:33:51 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:34:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:34:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:34:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:34:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:34:03 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:34:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:34:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:34:28 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (72ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:34:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:34:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:34:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:34:50 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (69ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:34:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:34:50 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:34:52 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:36:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:36:08 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (95ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:36:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:36:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:36:10 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:36:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (47.6ms) Completed 200 OK in 51ms (Views: 49.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:36:20 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:36:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:36:20 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:38:56 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:39:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:39:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:39:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:39:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:39:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:39:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:39:25 -0700 Compiled active_admin/editor/wysihtml5.min.js (3ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (123ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:39:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:39:25 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:39:27 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:39:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:39:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:39:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:39:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:41:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.2ms) Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:41:14 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (69ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:41:14 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:41:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:41:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:41:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:41:20 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:41:20 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:41:21 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:42:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:42:24 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (74ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:42:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:42:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:42:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:42:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:42:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:42:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:42:31 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:45:50 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:45:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (48.6ms) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:45:50 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:45:50 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (72ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:45:51 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:45:51 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:45:52 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:46:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:46:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:46:41 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (70ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:46:41 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:46:42 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:47:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:47:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:47:20 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (37ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (72ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:47:20 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:47:21 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:47:21 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:49:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:49:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:49:03 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (2ms) (pid 54547) Served asset /active_admin.js - 200 OK (134ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:49:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:49:03 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:49:04 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:49:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:49:11 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:49:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:49:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:49:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:49:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:49:36 -0700 Compiled active_admin/editor/wysihtml5.min.js (3ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (73ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:49:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 09:49:36 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:49:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:52:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:52:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:52:56 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (74ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:52:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:52:58 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:53:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.9ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:53:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:53:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:53:04 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:56:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.2ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:56:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:56:15 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (7ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (95ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:56:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:56:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:56:21 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:56:21 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:56:21 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:56:21 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 09:56:23 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-11 09:56:26 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "asset_scale"=>"on", "page"=>{"content"=>"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.3ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 16:56:26.998101' WHERE "pages"."id" = 1  (2.4ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 14ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-11 09:56:27 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.8ms) Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:56:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:56:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:56:27 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:56:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:56:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:56:28 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:56:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-11 09:56:40 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "asset_scale"=>"on", "page"=>{"content"=>"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.7ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 16:56:40.528682' WHERE "pages"."id" = 1  (51.7ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 61ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-11 09:56:40 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.4ms) Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:56:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:56:40 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:56:40 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 09:56:42 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 09:56:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 09:56:42 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 09:56:42 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:06:18 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:06:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:06:18 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:06:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:27:32 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:27:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:27:41 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:27:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:27:41 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 10:27:42 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:30:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.1ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:30:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:30:13 -0700 Compiled active_admin/editor/core.js (111ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (263ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:30:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:30:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:30:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:30:23 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:30:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:30:26 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:30:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:30:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:30:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:30:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:30:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:30:44 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:30:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:30:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:30:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.2ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:30:57 -0700 Compiled active_admin/editor/core.js (113ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (156ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:30:58 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:30:58 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:30:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:31:03 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.7ms) Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:31:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:31:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:31:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 10:31:03 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:31:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:31:12 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:31:12 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:31:13 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:32:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:32:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:32:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:32:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:33:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:33:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:33:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:33:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:34:33 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:34:33 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:34:33 -0700 Compiled active_admin/editor/core.js (108ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (192ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:34:34 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:34:35 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:35:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.9ms) Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:35:24 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:35:24 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:35:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:35:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 10:37:58 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:37:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.0ms) Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:37:59 -0700 Compiled active_admin/editor/core.js (111ms) (pid 54547) Compiled active_admin/editor.js (10ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (155ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:37:59 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:37:59 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:38:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.6ms) Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:38:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:38:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:38:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:38:10 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:38:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:38:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:38:20 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:38:20 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:38:40 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:38:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:38:40 -0700 Compiled active_admin/editor/wysihtml5.min.js (2ms) (pid 54547) Compiled active_admin/editor.js (8ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (78ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:38:40 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:38:42 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:38:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:38:47 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:38:47 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:38:47 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 10:38:47 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:39:55 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:40:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:40:53 -0700 Compiled active_admin/editor/core.js (109ms) (pid 54547) Compiled active_admin/editor.js (53ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (193ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:40:54 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:40:54 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:40:55 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:41:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:41:00 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:41:00 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:41:00 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:42:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.5ms) Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:42:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:42:06 -0700 Error compiling asset active_admin.js: ExecJS::ProgramError: Error: Parse error on line 21: Unexpected '->' (in /Users/ejholmes/Source/active_admin_editor/app/assets/javascripts/active_admin/editor/core.js.coffee) Served asset /active_admin.js - 500 Internal Server Error Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:42:06 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:42:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.2ms) Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:42:20 -0700 Compiled active_admin/editor/core.js (112ms) (pid 54547) Compiled active_admin/editor.js (10ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (158ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:42:20 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:42:20 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:42:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:42:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.1ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:42:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:42:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:42:31 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:44:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:44:00 -0700 Compiled active_admin/editor/core.js (110ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (198ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:44:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:44:00 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:44:01 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:44:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:44:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:44:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:44:04 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:44:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:44:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:44:10 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:44:10 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:46:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:46:10 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:46:10 -0700 Compiled active_admin/editor/core.js (154ms) (pid 54547) Compiled active_admin/editor.js (13ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (202ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:46:10 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:46:11 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:46:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:46:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:46:15 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:46:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:48:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.2ms) Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:48:24 -0700 Compiled active_admin/editor/core.js (120ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (200ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:48:25 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:48:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:48:26 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:48:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.3ms) Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:48:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:48:31 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:48:31 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:48:42 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.9ms) Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:48:42 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:48:42 -0700 Compiled active_admin/editor/core.js (116ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (158ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:48:43 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:48:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.9ms) Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:48:44 -0700 Served asset /active_admin.css - 304 Not Modified (5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:48:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:48:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:48:46 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:48:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (58.5ms) Completed 200 OK in 62ms (Views: 60.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:48:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:48:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:48:48 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:48:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:48:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:48:59 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:48:59 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:50:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.1ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:50:18 -0700 Compiled active_admin/editor/core.js (110ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (200ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:50:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:50:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:50:19 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:50:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.0ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:50:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:50:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:50:22 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:50:23 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:50:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:50:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:50:27 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:50:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:50:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.2ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:50:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:50:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:50:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-11 10:50:51 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "asset_scale"=>"on", "page"=>{"content"=>"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 17:50:51.468781' WHERE "pages"."id" = 1  (50.3ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 59ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-11 10:50:51 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.4ms) Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:50:51 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:50:51 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:50:51 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:50:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:50:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:50:53 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:50:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:50:54 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-11 10:51:00 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "asset_scale"=>"on", "page"=>{"content"=>"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.2ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 17:51:00.640035' WHERE "pages"."id" = 1  (48.2ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 57ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-11 10:51:00 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.1ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:51:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:51:00 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:51:01 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:51:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:51:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:51:02 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:51:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:51:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.4ms) Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:51:19 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:51:19 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:51:19 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:51:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:51:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:51:37 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:51:37 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:52:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.3ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:52:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:52:24 -0700 Compiled active_admin/editor/core.js (110ms) (pid 54547) Compiled active_admin/editor.js (9ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (151ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:52:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-11 10:52:36 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "asset_scale"=>"on", "page"=>{"content"=>"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.3ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-11 17:52:36.194889' WHERE "pages"."id" = 1  (2.4ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 13ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-11 10:52:36 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.8ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:52:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:52:36 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:52:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:52:39 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.3ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:52:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:52:40 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:52:40 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:52:42 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:53:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:53:17 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:53:17 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:53:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:55:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:55:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:55:03 -0700 Compiled active_admin/editor/core.js (111ms) (pid 54547) Compiled active_admin/editor.js (58ms) (pid 54547) Compiled active_admin.js (3ms) (pid 54547) Served asset /active_admin.js - 200 OK (204ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:55:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:55:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:55:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:55:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:55:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:55:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (4.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (225.8ms) Completed 200 OK in 304ms (Views: 257.0ms | ActiveRecord: 5.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:55:24 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:55:24 -0700 Served asset /active_admin.js - 304 Not Modified (14ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:55:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:55:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.6ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:55:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:55:48 -0700 Compiled active_admin/editor/core.js (203ms) (pid 56573) Compiled active_admin/editor.js (10ms) (pid 56573) Compiled active_admin.js (3ms) (pid 56573) Served asset /active_admin.js - 200 OK (302ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:55:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:55:49 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 131ms (Views: 76.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:55:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.1ms) Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:55:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:55:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:55:52 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 10:56:35 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:58:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (106.0ms) Completed 200 OK in 165ms (Views: 113.0ms | ActiveRecord: 4.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:58:15 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:58:15 -0700 Compiled active_admin/editor/wysihtml5/parser_rules.js (0ms) (pid 56624) Compiled active_admin/editor/core.js (109ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (211ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:58:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 10:58:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 59ms (Views: 16.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 10:58:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.5ms) Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 10:58:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 10:58:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 10:58:22 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:00:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.1ms) Completed 200 OK in 50ms (Views: 47.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:00:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:00:01 -0700 Compiled active_admin/editor/core.js (110ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (35ms) (pid 56624) Served asset /active_admin.js - 200 OK (187ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:00:01 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:00:01 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:00:02 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:00:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.2ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:00:13 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:00:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:00:13 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:01:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.3ms) Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:01:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:01:34 -0700 Compiled active_admin/editor/core.js (120ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (198ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:01:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:01:35 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:01:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.2ms) Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:01:57 -0700 Compiled active_admin/editor/core.js (108ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (213ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:01:57 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:01:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:01:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:02:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.4ms) Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:02:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:02:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:02:08 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:02:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 1.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:02:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.8ms) Completed 200 OK in 54ms (Views: 52.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:02:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:02:34 -0700 Compiled active_admin/editor/core.js (111ms) (pid 56624) Compiled active_admin/editor.js (42ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (186ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:02:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:02:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:02:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:02:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:02:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:02:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:03:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:03:02 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:03:02 -0700 Compiled active_admin/editor/core.js (110ms) (pid 56624) Compiled active_admin/editor.js (8ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (183ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:03:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:03:03 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:04:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.3ms) Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:04:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:04:30 -0700 Compiled active_admin/editor/core.js (109ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (181ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:04:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:04:31 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:04:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:04:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:04:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:04:34 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:04:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (47.3ms) Completed 200 OK in 51ms (Views: 49.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:04:43 -0700 Compiled active_admin/editor/core.js (114ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (193ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:04:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:04:43 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:04:44 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:05:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.3ms) Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:05:13 -0700 Compiled active_admin/editor/core.js (118ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (218ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:05:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:05:13 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:05:14 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:05:18 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:05:18 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:05:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:05:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:05:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.6ms) Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:05:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:05:30 -0700 Compiled active_admin/editor/core.js (111ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (183ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:05:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:05:31 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:05:34 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:05:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.9ms) Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:05:35 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:05:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:05:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:06:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:06:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:06:08 -0700 Compiled active_admin/editor/core.js (114ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (187ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:06:08 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:06:09 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:06:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.6ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:06:12 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:06:12 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:06:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:06:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:06:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:06:48 -0700 Compiled active_admin/editor/core.js (108ms) (pid 56624) Compiled active_admin/editor.js (9ms) (pid 56624) Compiled active_admin.js (3ms) (pid 56624) Served asset /active_admin.js - 200 OK (183ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:06:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:06:50 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:06:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.1ms) Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:06:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:06:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:06:52 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:37 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (2ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:10:38 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.4ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (217.9ms) Completed 200 OK in 345ms (Views: 317.8ms | ActiveRecord: 1.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:10:39 -0700 Served asset /active_admin.js - 304 Not Modified (13ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:10:39 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:10:39 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:39 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:10:39 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/image_assets/17" for 127.0.0.1 at 2012-05-11 11:10:41 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"17"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "17"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.8ms) Completed 200 OK in 14ms (Views: 10.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:10:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:10:41 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:41 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started DELETE "/admin/image_assets/17" for 127.0.0.1 at 2012-05-11 11:10:43 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "id"=>"17"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "17"]]  (0.0ms) begin transaction SQL (29.9ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 17]]  (47.0ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 92ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:10:43 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (80.0ms) Completed 200 OK in 84ms (Views: 81.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:10:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:10:44 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:44 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:10:44 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:10:44 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:45 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:10:46 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (55.6ms) Completed 200 OK in 130ms (Views: 127.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:10:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:10:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:47 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:10:51 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 18:10:51 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 18:10:51 UTC +00:00]]  (4.4ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/18 Completed 302 Found in 306ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/18" for 127.0.0.1 at 2012-05-11 11:10:52 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"18"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "18"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.6ms) Completed 200 OK in 13ms (Views: 10.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:10:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:10:52 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:10:53 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/18" for 127.0.0.1 at 2012-05-11 11:12:04 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"18"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "18"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (49.4ms) Completed 200 OK in 115ms (Views: 59.6ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:12:04 -0700 Served asset /active_admin.css - 304 Not Modified (12ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:12:04 -0700 Served asset /active_admin.js - 200 OK (39ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:12:04 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:12:22 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started DELETE "/admin/image_assets/18" for 127.0.0.1 at 2012-05-11 11:21:53 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "id"=>"18"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "18"]]  (0.1ms) begin transaction SQL (4.1ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 18]]  (56.2ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 143ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:21:53 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (169.8ms) Completed 200 OK in 179ms (Views: 171.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:21:54 -0700 Served asset /active_admin.js - 304 Not Modified (44ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:21:54 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:21:54 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:21:54 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:21:54 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (2ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:21:56 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (17.0ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:21:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:21:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:21:56 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:22:01 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 50ms NoMethodError (undefined method `width' for {:width=>259, :height=>194}:Hash): /Users/ejholmes/Source/active_admin_editor/app/uploaders/image_asset_uploader.rb:25:in `scale' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:85:in `block in process!' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `process!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:231:in `block in cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/mount.rb:315:in `cache' carrierwave (0.6.2) lib/carrierwave/mount.rb:173:in `storage=' carrierwave (0.6.2) lib/carrierwave/orm/activerecord.rb:37:in `storage=' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:85:in `block in assign_attributes' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `each' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `assign_attributes' activerecord (3.2.3) lib/active_record/base.rb:498:in `initialize' inherited_resources (1.3.1) lib/inherited_resources/base_helpers.rb:52:in `new' inherited_resources (1.3.1) lib/inherited_resources/base_helpers.rb:52:in `build_resource' activeadmin (0.4.3) lib/active_admin/resource_controller/callbacks.rb:15:in `build_resource' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:31:in `create' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:48:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__3271633528346475520__process_action__354408706954041345__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1112002270405062228__call__1849133692832033006__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:22:09 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (14.2ms) Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:22:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:22:09 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:22:09 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:22:10 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:22:10 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (84.4ms) Completed 200 OK in 88ms (Views: 86.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:22:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:22:11 -0700 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 2012-05-11 11:22:11 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:22:11 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:22:11 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:22:12 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.4ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:22:12 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:22:12 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:22:12 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:22:46 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 116ms NoMethodError (undefined method `process' for #<#:0x007ffe5f513078>): /Users/ejholmes/Source/active_admin_editor/app/uploaders/image_asset_uploader.rb:28:in `scale' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:85:in `block in process!' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/processing.rb:81:in `process!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:231:in `block in cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/versions.rb:216:in `cache_versions!' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `block in with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `each' carrierwave (0.6.2) lib/carrierwave/uploader/callbacks.rb:18:in `with_callbacks' carrierwave (0.6.2) lib/carrierwave/uploader/cache.rb:112:in `cache!' carrierwave (0.6.2) lib/carrierwave/mount.rb:315:in `cache' carrierwave (0.6.2) lib/carrierwave/mount.rb:173:in `storage=' carrierwave (0.6.2) lib/carrierwave/orm/activerecord.rb:37:in `storage=' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:85:in `block in assign_attributes' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `each' activerecord (3.2.3) lib/active_record/attribute_assignment.rb:78:in `assign_attributes' activerecord (3.2.3) lib/active_record/base.rb:498:in `initialize' inherited_resources (1.3.1) lib/inherited_resources/base_helpers.rb:52:in `new' inherited_resources (1.3.1) lib/inherited_resources/base_helpers.rb:52:in `build_resource' activeadmin (0.4.3) lib/active_admin/resource_controller/callbacks.rb:15:in `build_resource' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:31:in `create' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:48:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__219427181255137855__process_action__1932509787084367222__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1025361204772279081__call__260851790324642601__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.7ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:22:52 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (75.0ms) Completed 200 OK in 81ms (Views: 77.5ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:22:52 -0700 Served asset /active_admin.js - 304 Not Modified (41ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:22:52 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:22:52 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:26:30 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (2ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:26:31 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (94.4ms) Completed 200 OK in 155ms (Views: 103.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:26:31 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:26:31 -0700 Served asset /active_admin.js - 304 Not Modified (39ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:26:31 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:26:34 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.7ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 18:26:34 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 18:26:34 UTC +00:00]]  (3.1ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/19 Completed 302 Found in 106ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/19" for 127.0.0.1 at 2012-05-11 11:26:34 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"19"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "19"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.0ms) Completed 200 OK in 15ms (Views: 12.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:26:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:26:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:26:35 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/19" for 127.0.0.1 at 2012-05-11 11:27:06 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"19"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "19"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.1ms) Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:27:06 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:27:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:27:06 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets/19" for 127.0.0.1 at 2012-05-11 11:27:16 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"19"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "19"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (48.6ms) Completed 200 OK in 113ms (Views: 58.4ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:27:16 -0700 Served asset /active_admin.js - 304 Not Modified (36ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:27:16 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:27:17 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (2ms) Started DELETE "/admin/image_assets/19" for 127.0.0.1 at 2012-05-11 11:28:40 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "id"=>"19"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "19"]]  (0.1ms) begin transaction SQL (4.1ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 19]]  (56.2ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 142ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:28:40 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (165.4ms) Completed 200 OK in 174ms (Views: 167.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:28:40 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:28:40 -0700 Served asset /active_admin.js - 304 Not Modified (43ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:28:41 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (3ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:28:41 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:28:41 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:28:43 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (41.9ms) Completed 200 OK in 47ms (Views: 43.9ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:28:43 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:28:43 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:28:43 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:28:47 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.6ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 18:28:48 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 18:28:48 UTC +00:00]]  (3.3ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/20 Completed 302 Found in 101ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/20" for 127.0.0.1 at 2012-05-11 11:28:48 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"20"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "20"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.5ms) Completed 200 OK in 16ms (Views: 13.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:28:48 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:28:48 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:28:48 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-11 11:29:00 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (155.2ms) Completed 200 OK in 160ms (Views: 156.7ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:29:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:29:00 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:29:00 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-11 11:29:00 -0700 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 2012-05-11 11:29:00 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:29:00 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:29:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (194.0ms) Completed 200 OK in 199ms (Views: 195.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:29:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:29:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:29:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:29:04 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:30:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:30:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:30:22 -0700 Compiled active_admin/editor/core.js (113ms) (pid 57175) Compiled active_admin/editor.js (10ms) (pid 57175) Compiled active_admin.js (3ms) (pid 57175) Served asset /active_admin.js - 200 OK (215ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:30:23 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:30:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:30:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.1ms) Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:30:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:30:35 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:30:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:30:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:30:43 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:31:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (102.7ms) Completed 200 OK in 162ms (Views: 109.2ms | ActiveRecord: 4.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:31:57 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:31:57 -0700 Served asset /active_admin.js - 304 Not Modified (41ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:31:58 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:31:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 56ms (Views: 15.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:32:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:32:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:32:04 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:32:04 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:32:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.7ms) Completed 200 OK in 49ms (Views: 47.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:32:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:32:28 -0700 Compiled active_admin/editor/core.js (136ms) (pid 57237) Compiled active_admin/editor.js (9ms) (pid 57237) Compiled active_admin.js (3ms) (pid 57237) Served asset /active_admin.js - 200 OK (212ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:32:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:32:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:32:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.7ms) Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:32:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:32:52 -0700 Compiled active_admin/editor/core.js (113ms) (pid 57237) Compiled active_admin/editor.js (9ms) (pid 57237) Compiled active_admin.js (3ms) (pid 57237) Served asset /active_admin.js - 200 OK (213ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:32:52 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:32:54 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 3.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:33:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:33:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:33:09 -0700 Compiled active_admin/editor/core.js (111ms) (pid 57237) Compiled active_admin/editor.js (10ms) (pid 57237) Compiled active_admin.js (3ms) (pid 57237) Served asset /active_admin.js - 200 OK (214ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:33:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:33:10 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 2.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:33:22 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.7ms) Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:33:22 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:33:22 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:33:23 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:33:49 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:33:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (2.9ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (102.5ms) Completed 200 OK in 161ms (Views: 109.1ms | ActiveRecord: 4.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:33:50 -0700 Compiled active_admin/editor/core.js (116ms) (pid 57301) Compiled active_admin/editor.js (9ms) (pid 57301) Compiled active_admin.js (3ms) (pid 57301) Served asset /active_admin.js - 200 OK (218ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:33:50 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:33:50 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:33:51 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 61ms (Views: 41.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:34:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.1ms) Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:34:05 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:34:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:34:05 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:35:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:35:06 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:35:06 -0700 Compiled active_admin/editor/core.js (111ms) (pid 57301) Compiled active_admin/editor.js (12ms) (pid 57301) Compiled active_admin.js (3ms) (pid 57301) Served asset /active_admin.js - 200 OK (190ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:35:06 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:35:07 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 2.6ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:35:19 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:35:25 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:35:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.2ms) Completed 200 OK in 50ms (Views: 48.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:35:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:35:26 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:35:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:35:33 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:36:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.5ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (109.5ms) Completed 200 OK in 168ms (Views: 115.6ms | ActiveRecord: 4.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:36:24 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:36:24 -0700 Compiled active_admin/editor/core.js (112ms) (pid 57489) Compiled active_admin/editor.js (9ms) (pid 57489) Compiled active_admin.js (3ms) (pid 57489) Served asset /active_admin.js - 200 OK (209ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:36:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:36:26 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:36:26 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.1ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (115.8ms) Completed 200 OK in 151ms (Views: 117.7ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:36:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:36:27 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:36:27 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:36:27 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-11 11:36:28 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (93.2ms) Completed 200 OK in 98ms (Views: 94.7ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:36:29 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:36:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-11 11:36:29 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:36:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:36:29 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:36:29 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:36:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.5ms) Completed 200 OK in 49ms (Views: 47.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:36:30 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:36:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:36:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:36:31 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 2.6ms | ActiveRecord: 0.2ms) Started GET "/admin/assets/new" for 127.0.0.1 at 2012-05-11 11:36:33 -0700 ActionController::RoutingError (No route matches [GET] "/admin/assets/new"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:37:31 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (106.6ms) Completed 200 OK in 164ms (Views: 113.0ms | ActiveRecord: 4.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:37:31 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:37:31 -0700 Compiled active_admin/editor/core.js (112ms) (pid 57623) Compiled active_admin/editor.js (10ms) (pid 57623) Compiled active_admin.js (3ms) (pid 57623) Served asset /active_admin.js - 200 OK (210ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:37:32 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:37:33 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 60ms (Views: 16.6ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:37:34 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (20.2ms) Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:37:34 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:37:34 -0700 Served asset /active_admin.css - 304 Not Modified (5ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:37:35 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:37:42 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 18:37:45 UTC +00:00], ["dimensions", "---\n:width: 2448\n:height: 3264\n"], ["storage", "Gv7mJ.jpg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 18:37:45 UTC +00:00]]  (52.8ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/21 Completed 302 Found in 3774ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/21" for 127.0.0.1 at 2012-05-11 11:37:46 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"21"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "21"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.8ms) Completed 200 OK in 17ms (Views: 13.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:37:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:37:46 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:37:46 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:37:54 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:37:54 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (131.6ms) Completed 200 OK in 136ms (Views: 133.1ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:37:54 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:37:54 -0700 Served asset /active_admin.css - 304 Not Modified (5ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:37:55 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:37:55 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:37:55 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:37:56 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (14.2ms) Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:37:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:37:56 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:37:56 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:38:02 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 18:38:03 UTC +00:00], ["dimensions", "---\n:width: 1080\n:height: 1920\n"], ["storage", "Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 18:38:03 UTC +00:00]]  (3.1ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/22 Completed 302 Found in 1125ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/22" for 127.0.0.1 at 2012-05-11 11:38:03 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"22"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "22"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.2ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:38:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:38:03 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:38:04 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:38:05 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:38:06 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (105.3ms) Completed 200 OK in 109ms (Views: 106.7ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:38:06 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:38:06 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:38:06 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:38:06 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:38:06 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-11 11:38:08 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (13.6ms) Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:38:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:38:08 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:38:08 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-11 11:38:18 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2W8Q5VAZsge+RsMZxzt5yFFNUCFFiqxD1zY8t6LYIyc=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 11 May 2012 18:38:18 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Fri, 11 May 2012 18:38:18 UTC +00:00]]  (3.1ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/23 Completed 302 Found in 116ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/23" for 127.0.0.1 at 2012-05-11 11:38:18 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"23"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "23"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.3ms) Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:38:19 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:38:19 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:38:19 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-11 11:38:31 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-11 11:38:35 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (89.0ms) Completed 200 OK in 94ms (Views: 90.5ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:38:35 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:38:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:38:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-11 11:38:36 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-11 11:38:36 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-11 11:38:36 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:38:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.2ms) Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:38:37 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:38:37 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:38:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:38:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.2ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:38:50 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:39:02 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.3ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:39:11 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.3ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:39:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.1ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:39:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:40:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1486ms) (pid 57623) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1566.2ms) Completed 200 OK in 1570ms (Views: 1568.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:40:14 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:40:14 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:40:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:40:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 5.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:42:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.5ms) Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:42:46 -0700 Compiled active_admin/editor/core.js (110ms) (pid 57623) Compiled active_admin/editor.js (10ms) (pid 57623) Compiled active_admin.js (3ms) (pid 57623) Served asset /active_admin.js - 200 OK (220ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:42:46 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:42:46 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:42:48 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 6.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:43:16 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.5ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:43:16 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:43:16 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:43:16 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:43:17 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 5.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:43:45 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1182ms) (pid 57623) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1305.7ms) Completed 200 OK in 1309ms (Views: 1307.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:43:47 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:43:47 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:43:47 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:43:48 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 5.5ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:44:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 86ms (Views: 22.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:44:32 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:44:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:44:47 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (108.8ms) Completed 200 OK in 167ms (Views: 115.5ms | ActiveRecord: 4.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:44:47 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:44:47 -0700 Served asset /active_admin.js - 304 Not Modified (38ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:44:47 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-11 11:44:48 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 60ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-11 11:45:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 21ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-11 11:45:25 -0700 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-11 11:45:25 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-11 11:45:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 1ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (98.0ms) Compiled active_admin/editor/core.js (174ms) (pid 17015) Compiled active_admin/editor.js (11ms) (pid 17015) Compiled active_admin.js (4ms) (pid 17015) Completed 200 OK in 478ms (Views: 465.3ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/application.js - 200 OK (4ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/base.js - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 200 OK (5ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 200 OK (6ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/editor/quicksave.js - 200 OK (2ms) Started GET "/assets/active_admin/editor/core.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/editor/core.js - 200 OK (2ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin/editor.js - 200 OK (10ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:32 -0700 Served asset /active_admin.js - 200 OK (38ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:33 -0700 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:33 -0700 Served asset /jquery-ui.js - 200 OK (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-14 17:02:33 -0700 Served asset /jquery_ujs.js - 200 OK (2ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-14 17:02:38 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3EWOWlYwNf6Pr+nCpQKFNYw5R7fRVAPoinThVM2GB8=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-11 01:22:52.520487', "current_sign_in_at" = '2012-05-15 00:02:38.547979', "sign_in_count" = 3, "updated_at" = '2012-05-15 00:02:38.549264' WHERE "admin_users"."id" = 1  (2.9ms) commit transaction Redirected to http://localhost:3000/admin Completed 302 Found in 186ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-14 17:02:38 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (8.8ms) Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:38 -0700 Served asset /active_admin.js - 200 OK (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-14 17:02:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 200 OK (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-14 17:02:39 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (1ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-14 17:02:40 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (201.9ms) Completed 200 OK in 238ms (Views: 203.5ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:40 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/23/thumb_Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-14 17:02:41 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/23/thumb_Howard_Carter-2012-hp.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/22/thumb_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:41 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/thumb_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:41 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/20/thumb_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:41 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-14 17:02:41 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (2ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-14 17:02:41 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 200 OK (1ms) Started GET "/admin/image_assets/23" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"23"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "23"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (12.4ms) Completed 200 OK in 18ms (Views: 14.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/23/thumb_Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/23/thumb_Howard_Carter-2012-hp.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/23/three_quarters_Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/23/three_quarters_Howard_Carter-2012-hp.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/23/Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/23/Howard_Carter-2012-hp.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/23/one_quarter_Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/23/one_quarter_Howard_Carter-2012-hp.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/23/half_Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-14 17:02:44 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/23/half_Howard_Carter-2012-hp.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started DELETE "/admin/image_assets/23" for 127.0.0.1 at 2012-05-14 17:02:47 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"J3EWOWlYwNf6Pr+nCpQKFNYw5R7fRVAPoinThVM2GB8=", "id"=>"23"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "23"]]  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 23]]  (2.6ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 14ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-14 17:02:47 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (91.4ms) Completed 200 OK in 95ms (Views: 92.8ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:47 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/22/thumb_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:47 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/thumb_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/uploads/image_asset/storage/20/thumb_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:47 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:47 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started GET "/admin/image_assets/22" for 127.0.0.1 at 2012-05-14 17:02:49 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"22"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "22"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (12.3ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:49 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/22/one_quarter_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:50 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/one_quarter_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started GET "/uploads/image_asset/storage/22/half_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:50 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/half_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/22/three_quarters_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:50 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/three_quarters_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/22/Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:50 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/22/thumb_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png" for 127.0.0.1 at 2012-05-14 17:02:50 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/22/thumb_Screen_Shot_2012-05-09_at_2.33.23_PM__2_.png"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started DELETE "/admin/image_assets/22" for 127.0.0.1 at 2012-05-14 17:02:51 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"J3EWOWlYwNf6Pr+nCpQKFNYw5R7fRVAPoinThVM2GB8=", "id"=>"22"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "22"]]  (0.0ms) begin transaction SQL (0.2ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 22]]  (152.6ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 162ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-14 17:02:51 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (92.8ms) Completed 200 OK in 97ms (Views: 94.3ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:51 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/20/thumb_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:52 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:52 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/image_assets/21" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"21"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "21"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (12.0ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/21/one_quarter_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/one_quarter_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/21/half_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/half_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) Started GET "/uploads/image_asset/storage/21/three_quarters_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/three_quarters_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/21/Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg" for 127.0.0.1 at 2012-05-14 17:02:53 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/21/thumb_Gv7mJ.jpg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) Started DELETE "/admin/image_assets/21" for 127.0.0.1 at 2012-05-14 17:02:54 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"J3EWOWlYwNf6Pr+nCpQKFNYw5R7fRVAPoinThVM2GB8=", "id"=>"21"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "21"]]  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 21]]  (49.7ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 59ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-14 17:02:55 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (87.8ms) Completed 200 OK in 91ms (Views: 89.1ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:55 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/20/thumb_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:55 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/image_assets/20" for 127.0.0.1 at 2012-05-14 17:02:56 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"20"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "20"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (11.9ms) Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:56 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/20/one_quarter_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:57 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/one_quarter_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/20/three_quarters_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:57 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/three_quarters_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/uploads/image_asset/storage/20/half_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:57 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/half_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/20/thumb_download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:57 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/uploads/image_asset/storage/20/download.jpeg" for 127.0.0.1 at 2012-05-14 17:02:57 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/20/download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started DELETE "/admin/image_assets/20" for 127.0.0.1 at 2012-05-14 17:02:58 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"J3EWOWlYwNf6Pr+nCpQKFNYw5R7fRVAPoinThVM2GB8=", "id"=>"20"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "20"]]  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 20]]  (56.4ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 67ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-14 17:02:58 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (82.5ms) Completed 200 OK in 86ms (Views: 84.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:02:59 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-14 17:03:00 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (16.5ms) Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:03:00 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-14 17:03:05 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3EWOWlYwNf6Pr+nCpQKFNYw5R7fRVAPoinThVM2GB8=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 15 May 2012 00:03:05 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 15 May 2012 00:03:05 UTC +00:00]]  (2.8ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/24 Completed 302 Found in 139ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/24" for 127.0.0.1 at 2012-05-14 17:03:05 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"24"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "24"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.7ms) Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:03:06 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-14 17:03:08 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (96.2ms) Completed 200 OK in 102ms (Views: 98.0ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:03:08 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-14 17:03:08 -0700 Served asset /active_admin/orderable.png - 200 OK (1ms) Started GET "/admin/pages/new" for 127.0.0.1 at 2012-05-14 17:03:11 -0700 Processing by Admin::PagesController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (20.3ms) Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:03:11 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-14 17:03:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/new" for 127.0.0.1 at 2012-05-14 17:03:42 -0700 Processing by Admin::PagesController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (16.6ms) Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-14 17:03:42 -0700 Served asset /active_admin.css - 200 OK (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-14 17:03:42 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-14 17:03:42 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 14:35:24 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (15ms) Started GET "/admin" for 127.0.0.1 at 2012-05-29 14:35:33 -0700 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-29 14:35:33 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (1.2ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (160.5ms) Compiled active_admin/editor/fileuploader.js (0ms) (pid 5469) Compiled active_admin/editor.js (42ms) (pid 5469) Compiled active_admin.js (3ms) (pid 5469) Completed 200 OK in 516ms (Views: 502.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/application.js - 200 OK (1ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/base.js - 200 OK (7ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 200 OK (5ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/fileuploader.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/editor/fileuploader.js - 200 OK (27ms) Started GET "/assets/active_admin/editor/core.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/editor/core.js - 200 OK (2ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/editor/quicksave.js - 200 OK (2ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin/editor.js - 200 OK (10ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /active_admin.js - 200 OK (13ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /jquery-ui.js - 200 OK (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /jquery.js - 200 OK (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-29 14:35:34 -0700 Served asset /jquery_ujs.js - 200 OK (1ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-29 14:35:43 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zu0D+eLAntowyZF66MA/eGtcQLyBAGd8OWHQNTn8su8=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (12.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.3ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-15 00:02:38.547979', "current_sign_in_at" = '2012-05-29 21:35:43.935069', "sign_in_count" = 4, "updated_at" = '2012-05-29 21:35:43.935986' WHERE "admin_users"."id" = 1  (2.8ms) commit transaction Redirected to http://localhost:3000/admin Completed 302 Found in 238ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-29 14:35:44 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (8.5ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 14:35:47 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (8.8ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (181.0ms) Completed 200 OK in 256ms (Views: 238.3ms | ActiveRecord: 9.6ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-29 14:35:47 -0700 Served asset /active_admin/orderable.png - 200 OK (17ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 14:35:47 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 200 OK (18ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 14:35:47 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:35:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (56.4ms) Completed 200 OK in 124ms (Views: 120.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:36:05 -0700 Served asset /active_admin.js - 200 OK (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:40:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.7ms) Completed 200 OK in 92ms (Views: 23.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:40:02 -0700 Served asset /active_admin.css - 200 OK (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:40:02 -0700 Compiled active_admin/editor/core.js (1537ms) (pid 5469) Compiled active_admin/editor.js (21ms) (pid 5469) Compiled active_admin.js (4ms) (pid 5469) Served asset /active_admin.js - 200 OK (1735ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:40:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (103.5ms) Completed 200 OK in 162ms (Views: 110.1ms | ActiveRecord: 4.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:40:25 -0700 Served asset /active_admin.css - 304 Not Modified (31ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:40:25 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:40:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 200 OK (14ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:40:27 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 101ms (Views: 61.1ms | ActiveRecord: 0.3ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:40:27 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:42:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:42:33 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:42:33 -0700 Compiled active_admin/editor/core.js (168ms) (pid 5549) Compiled active_admin/editor.js (22ms) (pid 5549) Compiled active_admin.js (3ms) (pid 5549) Served asset /active_admin.js - 200 OK (349ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:42:33 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:42:36 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 3.2ms | ActiveRecord: 0.2ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:42:36 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:42:41 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (23.2ms) Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:42:41 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:42:41 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:42:41 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:42:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (46.3ms) Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:42:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:42:52 -0700 Compiled active_admin/editor/core.js (142ms) (pid 5549) Compiled active_admin/editor.js (10ms) (pid 5549) Compiled active_admin.js (3ms) (pid 5549) Served asset /active_admin.js - 200 OK (221ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:42:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:43:50 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 3.1ms | ActiveRecord: 0.2ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:43:50 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:44:17 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.3ms) Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:44:17 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:44:17 -0700 Compiled active_admin/editor/core.js (118ms) (pid 5549) Compiled active_admin/editor.js (28ms) (pid 5549) Compiled active_admin.js (4ms) (pid 5549) Served asset /active_admin.js - 200 OK (317ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:44:17 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:44:18 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 3.4ms | ActiveRecord: 0.3ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:44:18 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:46:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1729ms) (pid 5549) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1828.7ms) Completed 200 OK in 1833ms (Views: 1831.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:46:04 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:46:04 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:46:05 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:46:06 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 3.0ms | ActiveRecord: 0.2ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:46:06 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:46:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1247ms) (pid 5549) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1331.2ms) Completed 200 OK in 1335ms (Views: 1333.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:46:47 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:46:47 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:46:47 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:46:48 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 0.3ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:46:48 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:46:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.2ms) Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:46:59 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:46:59 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:46:59 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:47:01 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.6ms | ActiveRecord: 0.2ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:47:01 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/admin/image_asset.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 14:47:04 -0700 ActionController::RoutingError (No route matches [POST] "/admin/image_asset.json"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 14:47:04 -0700 Served asset /loading.gif - 404 Not Found (16ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:47:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.3ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:47:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:47:52 -0700 Compiled active_admin/editor/core.js (184ms) (pid 5549) Compiled active_admin/editor.js (23ms) (pid 5549) Compiled active_admin.js (4ms) (pid 5549) Served asset /active_admin.js - 200 OK (386ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:47:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:47:55 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 3.1ms | ActiveRecord: 0.2ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:47:55 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 14:48:00 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} WARNING: Can't verify CSRF token authenticity AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction  (0.0ms) commit transaction Completed 401 Unauthorized in 82ms Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 14:48:00 -0700 Served asset /loading.gif - 404 Not Found (15ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:49:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} Completed 401 Unauthorized in 0ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-29 14:49:54 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (2.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (108.1ms) Compiled active_admin/editor/core.js (162ms) (pid 5549) Compiled active_admin/editor.js (28ms) (pid 5549) Compiled active_admin.js (5ms) (pid 5549) Completed 200 OK in 496ms (Views: 495.1ms | ActiveRecord: 0.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /jquery_ujs.js - 304 Not Modified (24ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /jquery.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/base.js - 304 Not Modified (12ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /jquery-ui.js - 304 Not Modified (3ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/application.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 304 Not Modified (6ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/editor/fileuploader.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/editor/fileuploader.js - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor/core.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/editor/core.js - 200 OK (5ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/editor/quicksave.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin/editor.js - 304 Not Modified (43ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-29 14:49:55 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-29 14:50:01 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yOzXww/MVHNKEzpUUnLFuMogo4UiWYRVYmhtIIE/C38=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (10.2ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-29 21:35:43.935069', "current_sign_in_at" = '2012-05-29 21:50:01.560061', "sign_in_count" = 5, "updated_at" = '2012-05-29 21:50:01.560767' WHERE "admin_users"."id" = 1  (2.7ms) commit transaction Redirected to http://localhost:3000/admin/pages/1/edit Completed 302 Found in 139ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:50:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.8ms) Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:50:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:50:01 -0700 Served asset /active_admin.js - 200 OK (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:50:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:50:06 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 3.0ms | ActiveRecord: 0.3ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:50:06 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 14:50:12 -0700 Served asset /loading.gif - 404 Not Found (12ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 14:50:12 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} WARNING: Can't verify CSRF token authenticity AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction  (0.0ms) commit transaction Completed 401 Unauthorized in 2ms Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} Completed 401 Unauthorized in 0ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (0.4ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (18.9ms) Compiled active_admin/editor/core.js (183ms) (pid 5549) Compiled active_admin/editor.js (29ms) (pid 5549) Compiled active_admin.js (5ms) (pid 5549) Completed 200 OK in 405ms (Views: 404.1ms | ActiveRecord: 0.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /jquery-ui.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/application.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/base.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/fileuploader.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/editor/fileuploader.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/core.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/editor/core.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/editor/quicksave.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin/editor.js - 304 Not Modified (13ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-29 14:52:08 -0700 Served asset /active_admin.js - 304 Not Modified (16ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-29 14:52:14 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nySILnw3Nfrqv4qFS3GLmRrBQWXILDinmNbku4LBK/8=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (132.1ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-29 21:50:01.560061', "current_sign_in_at" = '2012-05-29 21:52:14.766245', "sign_in_count" = 6, "updated_at" = '2012-05-29 21:52:14.766937' WHERE "admin_users"."id" = 1  (3.3ms) commit transaction Redirected to http://localhost:3000/admin/pages/1/edit Completed 302 Found in 227ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:52:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (51.1ms) Completed 200 OK in 55ms (Views: 53.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:52:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:52:15 -0700 Served asset /active_admin.js - 200 OK (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:52:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:52:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 3.0ms | ActiveRecord: 0.3ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:52:16 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/admin/image_assets.json?X-CSRF-Token=nySILnw3Nfrqv4qFS3GLmRrBQWXILDinmNbku4LBK%2F8%3D&qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 14:52:20 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"X-CSRF-Token"=>"nySILnw3Nfrqv4qFS3GLmRrBQWXILDinmNbku4LBK/8=", "qqfile"=>"Howard_Carter-2012-hp.jpg"} WARNING: Can't verify CSRF token authenticity AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction  (0.0ms) commit transaction Completed 401 Unauthorized in 2ms Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 14:52:20 -0700 Served asset /loading.gif - 404 Not Found (66ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:57:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} Completed 401 Unauthorized in 0ms Started GET "/admin/login" for 127.0.0.1 at 2012-05-29 14:57:52 -0700 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/shared/_links.erb (0.4ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (48.8ms) Compiled active_admin/editor/fileuploader.js (1ms) (pid 5549) Compiled active_admin/editor/core.js (175ms) (pid 5549) Compiled active_admin/editor.js (22ms) (pid 5549) Compiled active_admin.js (4ms) (pid 5549) Completed 200 OK in 420ms (Views: 419.4ms | ActiveRecord: 0.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /jquery-ui.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/application.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/base.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/wysihtml5.min.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/editor/wysihtml5.min.js - 304 Not Modified (4ms) Started GET "/assets/active_admin/editor/wysihtml5/parser_rules.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/editor/wysihtml5/parser_rules.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor/core.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/editor/core.js - 200 OK (3ms) Started GET "/assets/active_admin/editor/fileuploader.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/editor/fileuploader.js - 200 OK (5ms) Started GET "/assets/active_admin/editor/quicksave.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/editor/quicksave.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/editor.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin/editor.js - 304 Not Modified (21ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2012-05-29 14:57:53 -0700 Served asset /active_admin.js - 304 Not Modified (46ms) Started POST "/admin/login" for 127.0.0.1 at 2012-05-29 14:57:59 -0700 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (58.1ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-05-29 21:52:14.766245', "current_sign_in_at" = '2012-05-29 21:57:59.824621', "sign_in_count" = 7, "updated_at" = '2012-05-29 21:57:59.825348' WHERE "admin_users"."id" = 1  (3.4ms) commit transaction Redirected to http://localhost:3000/admin/pages/1/edit Completed 302 Found in 154ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:57:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.1ms) Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:58:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:58:00 -0700 Served asset /active_admin.js - 200 OK (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:58:00 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:58:01 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 3.0ms | ActiveRecord: 0.3ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:58:01 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 14:58:06 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction SQL (17.3ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 21:58:06 UTC +00:00], ["dimensions", nil], ["storage", nil], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 21:58:06 UTC +00:00]]  (7.2ms) commit transaction Completed 201 Created in 58ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 14:58:07 -0700 Served asset /loading.gif - 404 Not Found (67ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:58:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.1ms) Completed 200 OK in 53ms (Views: 51.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:58:13 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:58:13 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:58:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:58:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 3.4ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 14:58:23 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (193.5ms) Completed 200 OK in 211ms (Views: 208.6ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:58:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:58:23 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/uploads/image_asset/storage/24/thumb_download.jpeg" for 127.0.0.1 at 2012-05-29 14:58:23 -0700 ActionController::RoutingError (No route matches [GET] "/uploads/image_asset/storage/24/thumb_download.jpeg"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/assets/" for 127.0.0.1 at 2012-05-29 14:58:23 -0700 Served asset - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/image_assets/25" for 127.0.0.1 at 2012-05-29 14:58:26 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"25"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "25"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.0ms) Completed 500 Internal Server Error in 74ms ActionView::Template::Error (undefined method `[]' for nil:NilClass): 1: render renderer_for(:show) /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:18:in `block (4 levels) in ' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `call' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `content_for' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:26:in `block (2 levels) in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `td' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:25:in `block in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `tr' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:21:in `row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:17:in `block (3 levels) in ' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `attributes_table_for' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:32:in `block in attributes_table' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `panel' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:31:in `attributes_table' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:16:in `block (2 levels) in ' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `instance_exec' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `main_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:117:in `block (2 levels) in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:116:in `block in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:115:in `build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:99:in `block in build_page_content' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:98:in `build_page_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:42:in `block (2 levels) in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:39:in `block in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:10:in `build' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:63:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' activeadmin (0.4.3) lib/active_admin/view_helpers/renderer_helper.rb:21:in `render' activeadmin (0.4.3) app/views/active_admin/resource/show.html.arb:1:in `___sers_ejholmes__rbenv_versions_______p____lib_ruby_gems_______gems_activeadmin_______app_views_active_admin_resource_show_html_arb___150881633898507299_70286575787920' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' responders (0.9.1) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__2683498966806662905__process_action__3894817360737840773__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1732836372424472716__call__4063695015143784898__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (46.8ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 14:58:35 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (63.9ms) Completed 200 OK in 69ms (Views: 65.5ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:58:35 -0700 Served asset /active_admin.js - 304 Not Modified (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:58:35 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:58:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 14:59:29 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (85.1ms) Completed 200 OK in 145ms (Views: 142.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:59:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:59:30 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 14:59:31 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.2ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (103.0ms) Completed 200 OK in 107ms (Views: 104.4ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:59:31 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:59:31 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:59:31 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-29 14:59:32 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (7.3ms) Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:59:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:59:32 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:59:33 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 14:59:36 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (94.2ms) Completed 200 OK in 98ms (Views: 95.8ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:59:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:59:36 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:59:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 14:59:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.8ms) Completed 200 OK in 53ms (Views: 51.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 14:59:38 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 14:59:38 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 14:59:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 14:59:39 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 14:59:55 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 21:59:55 UTC +00:00], ["dimensions", nil], ["storage", nil], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 21:59:55 UTC +00:00]]  (53.3ms) commit transaction Completed 201 Created in 63ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 14:59:55 -0700 Served asset /loading.gif - 404 Not Found (55ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:17:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (4.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (144.5ms) Completed 200 OK in 227ms (Views: 172.8ms | ActiveRecord: 5.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:17:12 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:17:12 -0700 Served asset /active_admin.js - 304 Not Modified (56ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:17:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (17ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:17:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 165ms (Views: 29.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:17:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:17:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:17:27 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:17:27 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:17:28 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:17:32 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 51ms ActionView::MissingTemplate (Missing template admin/image_assets/create, active_admin/resource/create, active_admin/base/create, inherited_resources/base/create, application/create with {:locale=>[:en], :formats=>[:json], :handlers=>[:erb, :builder, :coffee, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__1285264781181890886__process_action__2825565986870062580__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__354128002208016186__call__1448948544977396432__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:17:32 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:18:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.0ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:18:14 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:18:14 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:18:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:18:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:18:22 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (173.4ms) Completed 200 OK in 236ms (Views: 234.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:18:23 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:18:23 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 15:18:24 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (154.1ms) Completed 200 OK in 159ms (Views: 155.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:18:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:18:24 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:18:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:18:25 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.2ms) Completed 200 OK in 49ms (Views: 47.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:18:25 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:18:25 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:18:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:19:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (4.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (143.6ms) Completed 200 OK in 230ms (Views: 151.0ms | ActiveRecord: 5.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:19:05 -0700 Served asset /active_admin.css - 304 Not Modified (6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:19:05 -0700 Served asset /active_admin.js - 304 Not Modified (54ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:19:06 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (15ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:19:07 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 88ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:19:11 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered text template (0.0ms) Completed 200 OK in 52ms (Views: 18.4ms | ActiveRecord: 0.2ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:19:11 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:19:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (44.1ms) Completed 200 OK in 48ms (Views: 46.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:19:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:19:26 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:19:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:19:28 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:19:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:19:30 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (166.2ms) Completed 200 OK in 170ms (Views: 168.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:19:30 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:19:30 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 15:20:12 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.2ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (284.0ms) Completed 200 OK in 342ms (Views: 315.7ms | ActiveRecord: 1.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:20:13 -0700 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:20:13 -0700 Served asset /active_admin.js - 304 Not Modified (38ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:20:13 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:20:14 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.5ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (27.1ms) Completed 200 OK in 32ms (Views: 25.4ms | ActiveRecord: 3.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:20:14 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:20:14 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:20:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:20:16 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:20:19 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction  (0.0ms) rollback transaction Completed 500 Internal Server Error in 19ms ActiveRecord::RecordInvalid (Validation failed: Storage You are not allowed to upload nil files, allowed types: ["jpg", "jpeg", "gif", "png"]): activerecord (3.2.3) lib/active_record/validations.rb:56:in `save!' activerecord (3.2.3) lib/active_record/attribute_methods/dirty.rb:33:in `save!' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `block in save!' activerecord (3.2.3) lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:208:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:293:in `with_transaction_returning_status' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `save!' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:44:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__1733882294722783177__process_action__43822854004934992__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3787128706879785886__call__3655874423899558790__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.1ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:20:19 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:21:15 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 60ms ActiveRecord::RecordInvalid (Validation failed: Storage You are not allowed to upload nil files, allowed types: ["jpg", "jpeg", "gif", "png"]): activerecord (3.2.3) lib/active_record/validations.rb:56:in `save!' activerecord (3.2.3) lib/active_record/attribute_methods/dirty.rb:33:in `save!' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `block in save!' activerecord (3.2.3) lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:208:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:293:in `with_transaction_returning_status' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `save!' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:45:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__4380904458836050445__process_action__3064957219366778156__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__440883366908132932__call__2509862114481653719__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:22:03 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 61ms ActiveRecord::RecordInvalid (Validation failed: Storage You are not allowed to upload nil files, allowed types: ["jpg", "jpeg", "gif", "png"]): activerecord (3.2.3) lib/active_record/validations.rb:56:in `save!' activerecord (3.2.3) lib/active_record/attribute_methods/dirty.rb:33:in `save!' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `block in save!' activerecord (3.2.3) lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:208:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:293:in `with_transaction_returning_status' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `save!' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:45:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__1281233060035570948__process_action__2539771425679579407__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__714594145727603147__call__66672501852363567__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:22:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (151.2ms) Completed 200 OK in 312ms (Views: 257.4ms | ActiveRecord: 4.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:22:36 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:22:36 -0700 Served asset /active_admin.js - 304 Not Modified (16ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:22:37 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:22:39 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 42ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:22:42 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 21ms ActiveRecord::RecordInvalid (Validation failed: Storage You are not allowed to upload nil files, allowed types: ["jpg", "jpeg", "gif", "png"]): activerecord (3.2.3) lib/active_record/validations.rb:56:in `save!' activerecord (3.2.3) lib/active_record/attribute_methods/dirty.rb:33:in `save!' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `block in save!' activerecord (3.2.3) lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:208:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:293:in `with_transaction_returning_status' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `save!' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:45:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__1600330421743355770__process_action__888380183045794544__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__172040646635681073__call__401813389300999700__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.8ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:22:42 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:25:38 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 55ms NoMethodError (undefined method `original_filename' for #): /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:43:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__3794610731177812620__process_action__285631869136552609__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1193164612478040253__call__3702295793198726346__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:28:22 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 31ms NameError (undefined local variable or method `params' for #): /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:46:in `original_filename' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:49:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__2020186566180391768__process_action__3448153881699026980__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__3122015198132270150__call__1628122487677020809__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:34:27 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (25.3ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:34:27 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:34:27 UTC +00:00]]  (2.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 403ms (Views: 19.9ms | ActiveRecord: 29.1ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:34:43 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.1ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (237.7ms) Completed 200 OK in 272ms (Views: 239.2ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:34:44 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:34:44 -0700 Served asset /active_admin.js - 304 Not Modified (15ms) Started GET "/admin/image_assets/27" for 127.0.0.1 at 2012-05-29 15:34:45 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"27"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "27"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (36.4ms) Completed 200 OK in 55ms (Views: 51.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:34:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:34:46 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started DELETE "/admin/image_assets/27" for 127.0.0.1 at 2012-05-29 15:34:52 -0700 Processing by Admin::ImageAssetsController#destroy as HTML Parameters: {"authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "id"=>"27"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "27"]]  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? [["id", 27]]  (2.6ms) commit transaction Redirected to http://localhost:3000/admin/image_assets Completed 302 Found in 19ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:34:52 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (84.2ms) Completed 200 OK in 88ms (Views: 86.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:34:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:34:52 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 15:34:55 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (96.7ms) Completed 200 OK in 102ms (Views: 98.5ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:34:55 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:34:55 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:34:55 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:34:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (103.0ms) Completed 200 OK in 108ms (Views: 105.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:34:57 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:34:57 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:34:58 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:34:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:35:02 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:35:02 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:35:02 UTC +00:00]]  (3.7ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 90ms (Views: 0.6ms | ActiveRecord: 4.3ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:35:02 -0700 Served asset /loading.gif - 404 Not Found (4ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:35:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:35:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.8ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:35:19 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:35:19 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:35:19 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:36:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.9ms) Completed 200 OK in 50ms (Views: 47.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:36:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:36:34 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:36:34 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:36:36 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 2.6ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:36:39 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:36:39 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:36:39 UTC +00:00]]  (2.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 72ms (Views: 0.5ms | ActiveRecord: 3.6ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:36:39 -0700 Served asset /loading.gif - 404 Not Found (45ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:36:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (50.2ms) Completed 200 OK in 55ms (Views: 52.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:36:57 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:36:57 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:36:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:37:08 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 147ms (Views: 83.5ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 15:37:23 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:37:23 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:37:23 UTC +00:00]]  (3.0ms) commit transaction Completed 200 OK in 579ms (Views: 0.1ms | ActiveRecord: 3.8ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:37:23 -0700 Served asset /loading.gif - 404 Not Found (4ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.9ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:37:35 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (105.1ms) Completed 200 OK in 116ms (Views: 107.5ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:37:35 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:37:35 -0700 Served asset /active_admin.js - 304 Not Modified (43ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:37:35 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:37:36 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 4.6ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:40:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.9ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:40:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:40:52 -0700 Compiled active_admin/editor/core.js (616ms) (pid 6695) Compiled active_admin/editor.js (13ms) (pid 6695) Compiled active_admin.js (3ms) (pid 6695) Served asset /active_admin.js - 200 OK (807ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:40:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:40:55 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 5.7ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:42:24 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.4ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:42:24 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:42:24 -0700 Compiled active_admin/editor/core.js (140ms) (pid 6695) Compiled active_admin/editor.js (23ms) (pid 6695) Compiled active_admin.js (4ms) (pid 6695) Served asset /active_admin.js - 200 OK (319ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:42:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:42:26 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 5.3ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 15:42:33 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (20.3ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:42:34 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:42:34 UTC +00:00]]  (4.8ms) commit transaction Completed 200 OK in 1034ms (Views: 0.1ms | ActiveRecord: 25.3ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:42:34 -0700 Served asset /loading.gif - 404 Not Found (52ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:42:34 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 5.6ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:42:53 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.5ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:43:10 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.9ms) Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:43:11 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:43:11 -0700 Served asset /active_admin.js - 200 OK (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:43:11 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:43:12 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 6.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:44:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 44ms (Views: 42.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:44:01 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:44:01 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:44:01 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:44:02 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:44:07 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:44:07 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:44:07 UTC +00:00]]  (5.9ms) commit transaction Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 6.5ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:44:07 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:44:07 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:44:20 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 46ms (Views: 2.4ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:44:37 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:44:37 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:44:37 UTC +00:00]]  (4.4ms) commit transaction Completed 200 OK in 72ms (Views: 0.1ms | ActiveRecord: 5.0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:44:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 10ms (Views: 3.3ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 15:44:43 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:44:44 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:44:44 UTC +00:00]]  (3.7ms) commit transaction Completed 200 OK in 958ms (Views: 0.1ms | ActiveRecord: 4.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:44:44 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:44:44 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:44:44 UTC +00:00]]  (2.6ms) commit transaction Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 3.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:44:44 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 6.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:44:49 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:44:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:44:49 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:44:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:44:51 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 8.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:45:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:45:07 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:45:07 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:45:07 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:45:09 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 9ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 15:45:15 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:45:16 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:45:16 UTC +00:00]]  (3.6ms) commit transaction Completed 200 OK in 1217ms (Views: 0.1ms | ActiveRecord: 4.2ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:45:16 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:45:16 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:45:16 UTC +00:00]]  (3.8ms) commit transaction Completed 200 OK in 96ms (Views: 0.2ms | ActiveRecord: 4.5ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:45:16 -0700 Served asset /loading.gif - 404 Not Found (45ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:45:17 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 3.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:45:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.4ms) Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:45:36 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:45:36 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:45:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:45:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 3.6ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:45:46 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:45:47 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:45:47 UTC +00:00]]  (3.5ms) commit transaction Completed 200 OK in 118ms (Views: 0.1ms | ActiveRecord: 4.1ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:45:47 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:45:47 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:46:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.8ms) Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:46:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:46:04 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:46:05 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:47:02 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 11ms (Views: 4.5ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 15:47:06 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:47:07 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:47:07 UTC +00:00]]  (2.7ms) commit transaction Completed 200 OK in 492ms (Views: 0.1ms | ActiveRecord: 3.4ms) Started GET "/assets/loading.gif" for 127.0.0.1 at 2012-05-29 15:47:07 -0700 Served asset /loading.gif - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/loading.gif"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:47:07 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 16ms (Views: 6.3ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:47:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1638ms) (pid 6695) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1746.1ms) Completed 200 OK in 1750ms (Views: 1748.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:47:46 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:47:46 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:47:46 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:47:47 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.0ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:47:51 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (11.2ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:47:51 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:47:51 UTC +00:00]]  (3.5ms) commit transaction Completed 200 OK in 162ms (Views: 0.1ms | ActiveRecord: 14.9ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:47:51 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.5ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:48:05 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 7.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:48:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (157.0ms) Completed 200 OK in 217ms (Views: 164.2ms | ActiveRecord: 4.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:48:54 -0700 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:48:54 -0700 Served asset /active_admin.js - 304 Not Modified (83ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:48:54 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (15ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:48:55 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 116ms (Views: 98.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:50:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1379ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1553.0ms) Completed 200 OK in 1557ms (Views: 1554.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:50:14 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:50:14 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:50:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:50:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 6.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:50:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1244ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1320.4ms) Completed 200 OK in 1324ms (Views: 1322.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:50:40 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:50:40 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:50:40 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:50:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 6.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:50:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1296ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1362.2ms) Completed 200 OK in 1366ms (Views: 1364.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:50:53 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:50:53 -0700 Served asset /active_admin.css - 200 OK (38ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:50:54 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:50:54 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 16ms (Views: 7.3ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:51:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1314ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1432.9ms) Completed 200 OK in 1437ms (Views: 1435.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:51:24 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:51:25 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:51:25 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:51:28 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 6.7ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:51:39 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (14.3ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:51:40 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:51:40 UTC +00:00]]  (3.7ms) commit transaction Completed 200 OK in 175ms (Views: 0.2ms | ActiveRecord: 18.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:51:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 7.8ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:52:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1316ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1430.3ms) Completed 200 OK in 1434ms (Views: 1432.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:52:40 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:52:40 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:52:40 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:52:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 8.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:53:11 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1284ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1353.9ms) Completed 200 OK in 1358ms (Views: 1355.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:53:12 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:53:12 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:53:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:53:14 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 7.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:53:36 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1298ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1385.1ms) Completed 200 OK in 1389ms (Views: 1387.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:53:37 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:53:37 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:53:38 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:53:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 47ms (Views: 40.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:53:55 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1303ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1417.5ms) Completed 200 OK in 1421ms (Views: 1419.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:53:57 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:53:57 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:53:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:53:58 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 8.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:54:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1269ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1354.2ms) Completed 200 OK in 1358ms (Views: 1356.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:54:06 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:54:06 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:54:07 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:54:09 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 8.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:54:16 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1287ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1402.7ms) Completed 200 OK in 1406ms (Views: 1404.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:54:18 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:54:18 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:54:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:54:19 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 8.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:54:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1292ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1410.3ms) Completed 200 OK in 1414ms (Views: 1412.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:54:27 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:54:27 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:54:27 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:54:28 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 16ms (Views: 8.4ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:54:38 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1273ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1357.1ms) Completed 200 OK in 1361ms (Views: 1359.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:54:39 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:54:39 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:54:39 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:54:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 8.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:55:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1263ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1374.7ms) Completed 200 OK in 1378ms (Views: 1376.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:55:06 -0700 Served asset /active_admin.css - 200 OK (12ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:55:06 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:55:06 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:55:08 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 15ms (Views: 7.9ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:55:14 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (13.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:55:14 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:55:14 UTC +00:00]]  (3.6ms) commit transaction Completed 200 OK in 125ms (Views: 0.2ms | ActiveRecord: 17.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:55:14 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 16ms (Views: 8.8ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 15:55:21 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:55:22 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:55:22 UTC +00:00]]  (2.9ms) commit transaction Completed 200 OK in 576ms (Views: 0.2ms | ActiveRecord: 3.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:55:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 17ms (Views: 10.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:55:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1250ms) (pid 7009) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1385.8ms) Completed 200 OK in 1389ms (Views: 1387.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:55:34 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:55:34 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:55:34 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:55:34 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 48ms (Views: 41.0ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:56:15 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (30.6ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:15 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:15 UTC +00:00]]  (3.0ms) commit transaction Completed 200 OK in 115ms (Views: 0.1ms | ActiveRecord: 33.8ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:56:16 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:16 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:16 UTC +00:00]]  (2.8ms) commit transaction Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 3.4ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 15:56:16 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:17 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:17 UTC +00:00]]  (4.1ms) commit transaction Completed 200 OK in 1061ms (Views: 0.1ms | ActiveRecord: 4.8ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 15:56:17 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:17 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:17 UTC +00:00]]  (2.6ms) commit transaction Completed 200 OK in 485ms (Views: 0.1ms | ActiveRecord: 3.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:56:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (62.9ms) Completed 200 OK in 67ms (Views: 65.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:56:19 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:56:19 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:56:19 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:56:21 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 14.9ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 15:56:40 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:40 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:40 UTC +00:00]]  (4.2ms) commit transaction Completed 200 OK in 92ms (Views: 0.1ms | ActiveRecord: 4.8ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 15:56:40 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:40 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:40 UTC +00:00]]  (2.6ms) commit transaction Completed 200 OK in 73ms (Views: 0.2ms | ActiveRecord: 3.3ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 15:56:40 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:41 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:41 UTC +00:00]]  (3.9ms) commit transaction Completed 200 OK in 955ms (Views: 0.1ms | ActiveRecord: 4.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:56:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 25ms (Views: 17.7ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 15:56:41 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (12.2ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:56:42 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:56:42 UTC +00:00]]  (2.6ms) commit transaction Completed 200 OK in 521ms (Views: 0.1ms | ActiveRecord: 15.1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:56:42 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 26ms (Views: 19.3ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:56:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:56:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:56:44 -0700 Served asset /active_admin.js - 304 Not Modified (68ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:56:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:56:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 27ms (Views: 19.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:57:26 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (129ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:57:27 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (460.7ms) Completed 200 OK in 749ms (Views: 746.5ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:57:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:57:28 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:57:28 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 15:57:28 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (50ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 15:57:28 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (2ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-29 15:57:29 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (38.3ms) Completed 200 OK in 137ms (Views: 106.7ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:57:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:57:29 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:57:29 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:57:34 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 6ms ActionView::MissingTemplate (Missing template admin/image_assets/create, active_admin/resource/create, active_admin/base/create, inherited_resources/base/create, application/create with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee, :arb]}. Searched in: * "/Users/ejholmes/Source/active_admin_editor/test/dummy/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/kaminari-0.13.0/app/views" * "/Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/devise-2.0.4/app/views" ): actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find' actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__2094667553446956289__process_action__371296835321792726__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__2146580633350863233__call__2601384767924818559__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:58:26 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (98.5ms) Completed 200 OK in 103ms (Views: 99.9ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:58:26 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:58:26 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:58:26 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 15:58:26 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 15:58:26 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-29 15:58:41 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (75.0ms) Completed 200 OK in 139ms (Views: 107.5ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:58:41 -0700 Served asset /active_admin.css - 304 Not Modified (32ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:58:41 -0700 Served asset /active_admin.js - 304 Not Modified (94ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:58:41 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:58:46 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction SQL (75.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:58:46 UTC +00:00], ["dimensions", nil], ["storage", nil], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:58:46 UTC +00:00]]  (3.2ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/52 Completed 302 Found in 117ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/52" for 127.0.0.1 at 2012-05-29 15:58:47 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"52"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "52"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (10.4ms) Completed 500 Internal Server Error in 40ms ActionView::Template::Error (undefined method `[]' for nil:NilClass): 1: render renderer_for(:show) /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:18:in `block (4 levels) in ' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `call' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `content_for' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:26:in `block (2 levels) in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `td' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:25:in `block in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `tr' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:21:in `row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:17:in `block (3 levels) in ' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `attributes_table_for' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:32:in `block in attributes_table' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `panel' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:31:in `attributes_table' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:16:in `block (2 levels) in ' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `instance_exec' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `main_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:117:in `block (2 levels) in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:116:in `block in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:115:in `build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:99:in `block in build_page_content' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:98:in `build_page_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:42:in `block (2 levels) in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:39:in `block in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:10:in `build' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:63:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' activeadmin (0.4.3) lib/active_admin/view_helpers/renderer_helper.rb:21:in `render' activeadmin (0.4.3) app/views/active_admin/resource/show.html.arb:1:in `___sers_ejholmes__rbenv_versions_______p____lib_ruby_gems_______gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3878869070071777905_70308493455200' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' responders (0.9.1) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__3318941204467721781__process_action__254644493211964430__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1748245734106300515__call__2886758266123475911__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.1ms) Started GET "/admin/image_assets/52" for 127.0.0.1 at 2012-05-29 15:59:00 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"52"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "52"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.2ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (undefined method `[]' for nil:NilClass): 1: render renderer_for(:show) /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:18:in `block (4 levels) in ' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `call' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `content_for' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:26:in `block (2 levels) in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `td' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:25:in `block in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `tr' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:21:in `row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:17:in `block (3 levels) in ' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `attributes_table_for' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:32:in `block in attributes_table' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `panel' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:31:in `attributes_table' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:16:in `block (2 levels) in ' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `instance_exec' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `main_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:117:in `block (2 levels) in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:116:in `block in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:115:in `build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:99:in `block in build_page_content' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:98:in `build_page_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:42:in `block (2 levels) in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:39:in `block in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:10:in `build' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:63:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' activeadmin (0.4.3) lib/active_admin/view_helpers/renderer_helper.rb:21:in `render' activeadmin (0.4.3) app/views/active_admin/resource/show.html.arb:1:in `___sers_ejholmes__rbenv_versions_______p____lib_ruby_gems_______gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3878869070071777905_70308493455200' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' responders (0.9.1) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__3318941204467721781__process_action__254644493211964430__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1748245734106300515__call__2886758266123475911__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.7ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.2ms) Started GET "/admin/image_assets/" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (147.3ms) Completed 200 OK in 157ms (Views: 148.7ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Served asset - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 15:59:02 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/image_assets/52" for 127.0.0.1 at 2012-05-29 15:59:07 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"52"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "52"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.2ms) Completed 500 Internal Server Error in 71ms ActionView::Template::Error (undefined method `[]' for nil:NilClass): 1: render renderer_for(:show) /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:18:in `block (4 levels) in ' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `call' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:48:in `content_for' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:26:in `block (2 levels) in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `td' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:25:in `block in row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `tr' activeadmin (0.4.3) lib/active_admin/views/components/attributes_table.rb:21:in `row' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:17:in `block (3 levels) in ' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `attributes_table_for' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:32:in `block in attributes_table' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `panel' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:31:in `attributes_table' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:16:in `block (2 levels) in ' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `instance_exec' activeadmin (0.4.3) lib/active_admin/views/pages/show.rb:24:in `main_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:117:in `block (2 levels) in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:116:in `block in build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:115:in `build_main_content_wrapper' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:99:in `block in build_page_content' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:98:in `build_page_content' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:42:in `block (2 levels) in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:68:in `block in build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:67:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/html/element.rb:17:in `div' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:39:in `block in build_page' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:96:in `with_current_dom_context' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.4.3) lib/active_admin/views/pages/base.rb:10:in `build' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:63:in `build_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:77:in `insert_tag' activeadmin (0.4.3) lib/active_admin/arbre/builder.rb:41:in `method_missing' activeadmin (0.4.3) lib/active_admin/view_helpers/renderer_helper.rb:21:in `render' activeadmin (0.4.3) app/views/active_admin/resource/show.html.arb:1:in `___sers_ejholmes__rbenv_versions_______p____lib_ruby_gems_______gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3878869070071777905_70308493455200' actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render' activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.3) lib/action_view/template.rb:141:in `render' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template' actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.3) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.3) lib/action_controller/metal/responder.rb:160:in `to_html' responders (0.9.1) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.3) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.3) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.3) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.3.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.4.3) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__3318941204467721781__process_action__254644493211964430__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1748245734106300515__call__2886758266123475911__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.6ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.2ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-29 15:59:23 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (43.8ms) Completed 200 OK in 47ms (Views: 45.8ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:59:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:59:23 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:59:23 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:59:46 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (1.6ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 22:59:47 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 22:59:47 UTC +00:00]]  (2.8ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/53 Completed 302 Found in 239ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/53" for 127.0.0.1 at 2012-05-29 15:59:47 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"53"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "53"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (23.3ms) Completed 200 OK in 29ms (Views: 25.4ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:59:47 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:59:47 -0700 Served asset /active_admin.js - 304 Not Modified (39ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:59:47 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:59:48 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (187.9ms) Completed 200 OK in 197ms (Views: 189.1ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Served asset - 404 Not Found (4ms) ActionController::RoutingError (No route matches [GET] "/assets"): actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 15:59:49 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 15:59:54 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 15:59:54 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (98.1ms) Completed 200 OK in 103ms (Views: 99.8ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:59:54 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:59:54 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:59:55 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (3ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-29 15:59:55 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (55ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 15:59:55 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 15:59:55 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 15:59:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (22.8ms) Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 15:59:58 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 15:59:58 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 15:59:58 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 15:59:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 27ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:01 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 56ms (Views: 19.9ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:00:11 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:00:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.6ms) Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:12 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:12 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:00:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:00:20 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:00:20 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:00:20 UTC +00:00]]  (3.4ms) commit transaction Completed 200 OK in 84ms (Views: 0.1ms | ActiveRecord: 4.0ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 16:00:20 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:00:20 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:00:20 UTC +00:00]]  (3.2ms) commit transaction Completed 200 OK in 104ms (Views: 0.2ms | ActiveRecord: 3.8ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 16:00:20 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:00:21 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:00:21 UTC +00:00]]  (4.1ms) commit transaction Completed 200 OK in 943ms (Views: 0.2ms | ActiveRecord: 4.7ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:21 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 4.6ms | ActiveRecord: 0.2ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:00:21 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:00:22 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:00:22 UTC +00:00]]  (3.9ms) commit transaction Completed 200 OK in 568ms (Views: 0.1ms | ActiveRecord: 4.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.4ms | ActiveRecord: 0.2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:22 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.1ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 5.8ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 13ms (Views: 6.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:00:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (101.1ms) Completed 200 OK in 105ms (Views: 103.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:30 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:30 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:00:30 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:32 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 12ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:00:33 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 16:00:34 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count  ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (108.1ms) Completed 200 OK in 112ms (Views: 109.4ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:34 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:34 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:00:34 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 16:00:34 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 16:00:34 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/image_assets/new" for 127.0.0.1 at 2012-05-29 16:00:35 -0700 Processing by Admin::ImageAssetsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/new.html.arb (16.3ms) Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:35 -0700 Served asset /active_admin.js - 304 Not Modified (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:35 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:00:35 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started POST "/admin/image_assets" for 127.0.0.1 at 2012-05-29 16:00:40 -0700 Processing by Admin::ImageAssetsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "image_asset"=>{"storage"=>#>}, "commit"=>"Create Image asset"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:00:40 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:00:40 UTC +00:00]]  (2.9ms) commit transaction Redirected to http://localhost:3000/admin/image_assets/58 Completed 302 Found in 55ms (ActiveRecord: 0.0ms) Started GET "/admin/image_assets/58" for 127.0.0.1 at 2012-05-29 16:00:40 -0700 Processing by Admin::ImageAssetsController#show as HTML Parameters: {"id"=>"58"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.1ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') AND "assets"."id" = ? LIMIT 1 [["id", "58"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (40.7ms) Completed 200 OK in 44ms (Views: 42.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:40 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:40 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:00:40 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:00:41 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.1ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count  Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (91.2ms) Completed 200 OK in 95ms (Views: 92.8ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 16:00:44 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:00:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:00:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:00:46 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:00:46 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:47 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 6.9ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:00:56 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:00:56 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:00:56 UTC +00:00]]  (2.7ms) commit transaction Completed 200 OK in 532ms (Views: 0.2ms | ActiveRecord: 3.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:00:56 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 14ms (Views: 7.5ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:02:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1634ms) (pid 7229) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1747.2ms) Completed 200 OK in 1751ms (Views: 1749.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:02:02 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:02:02 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:02:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:02:04 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 16ms (Views: 8.0ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:02:21 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (10.6ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:02:21 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:02:21 UTC +00:00]]  (3.8ms) commit transaction Completed 200 OK in 79ms (Views: 0.2ms | ActiveRecord: 14.6ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:02:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.7ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:02:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:02:29 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:02:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:02:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 16ms (Views: 9.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:04:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.2ms) Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:04:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:04:27 -0700 Compiled active_admin/editor/core.js (670ms) (pid 7229) Compiled active_admin/editor.js (27ms) (pid 7229) Compiled active_admin.js (4ms) (pid 7229) Served asset /active_admin.js - 200 OK (1011ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:04:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:04:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 18ms (Views: 9.5ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:04:35 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 18ms (Views: 10.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:06:59 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (3.3ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (116.0ms) Completed 200 OK in 153ms (Views: 122.7ms | ActiveRecord: 4.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:06:59 -0700 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:06:59 -0700 Served asset /active_admin.js - 304 Not Modified (43ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:06:59 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (2ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:07:00 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 125ms (Views: 84.1ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:07:15 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:07:15 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:07:15 UTC +00:00]]  (3.0ms) commit transaction Completed 200 OK in 568ms (Views: 0.1ms | ActiveRecord: 3.8ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:07:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.5ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:07:19 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:07:19 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:07:19 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:07:20 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 18ms (Views: 10.9ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 16:07:32 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:07:32 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:07:32 UTC +00:00]]  (3.5ms) commit transaction Completed 200 OK in 148ms (Views: 0.1ms | ActiveRecord: 4.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:09:50 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.7ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:09:50 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:09:50 -0700 Compiled active_admin/editor/core.js (219ms) (pid 7461) Compiled active_admin/editor.js (22ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (428ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:09:51 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:09:58 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 26ms (Views: 23.1ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:09:58 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:09:58 -0700 Served asset /active_admin.css - 304 Not Modified (5ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:09:59 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:10:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (45.7ms) Completed 200 OK in 49ms (Views: 47.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:10:27 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:10:27 -0700 Compiled active_admin/editor/core.js (150ms) (pid 7461) Compiled active_admin/editor.js (49ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (295ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:10:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:10:46 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.6ms) Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:10:46 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:10:46 -0700 Compiled active_admin/editor/core.js (186ms) (pid 7461) Compiled active_admin/editor.js (13ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (303ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:10:47 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:11:19 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.7ms) Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:11:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:11:20 -0700 Compiled active_admin/editor/core.js (121ms) (pid 7461) Compiled active_admin/editor.js (26ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (249ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:11:20 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:12:01 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.8ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:12:01 -0700 Served asset /active_admin.css - 304 Not Modified (29ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:12:01 -0700 Compiled active_admin/editor/core.js (245ms) (pid 7461) Compiled active_admin/editor.js (28ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (359ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:12:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:12:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.1ms) Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:12:07 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:12:07 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:12:07 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:12:37 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.0ms) Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:12:38 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:12:38 -0700 Compiled active_admin/editor/core.js (164ms) (pid 7461) Compiled active_admin/editor.js (136ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (634ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:12:39 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:12:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.2ms) Completed 200 OK in 51ms (Views: 48.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:12:57 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:12:57 -0700 Compiled active_admin/editor/core.js (231ms) (pid 7461) Compiled active_admin/editor.js (44ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (312ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:12:58 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:13:02 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.2ms) Completed 200 OK in 49ms (Views: 22.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:13:02 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:13:02 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:13:02 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:13:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.1ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:13:21 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:13:21 -0700 Compiled active_admin/editor/core.js (120ms) (pid 7461) Compiled active_admin/editor.js (14ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (231ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:13:21 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:13:32 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.8ms) Completed 200 OK in 26ms (Views: 23.1ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:13:32 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:13:32 -0700 Compiled active_admin/editor/core.js (118ms) (pid 7461) Compiled active_admin/editor.js (13ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (233ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:13:32 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:14:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:14:13 -0700 Compiled active_admin/editor/core.js (115ms) (pid 7461) Compiled active_admin/editor.js (9ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (199ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:14:13 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:14:13 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:14:14 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (17ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:14:14 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 49ms (Views: 41.3ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:14:21 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.7ms) Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:14:21 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:14:21 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:14:21 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:15:51 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:15:51 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:15:51 -0700 Compiled active_admin/editor/core.js (184ms) (pid 7461) Compiled active_admin/editor.js (23ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (359ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:15:52 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:15:53 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 13.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:16:09 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.5ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:16:09 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:16:09 -0700 Compiled active_admin/editor/core.js (122ms) (pid 7461) Compiled active_admin/editor.js (11ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (211ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:16:10 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:16:10 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 21ms (Views: 12.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:16:29 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.4ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:16:29 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:16:29 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:16:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:17:13 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.0ms) Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:17:14 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:17:14 -0700 Compiled active_admin/editor/core.js (124ms) (pid 7461) Compiled active_admin/editor.js (22ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (287ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:17:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:17:15 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 21ms (Views: 12.5ms | ActiveRecord: 0.3ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-29 16:17:27 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "asset_scale"=>"on", "page"=>{"content"=>"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (14.6ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-29 23:17:27.065721' WHERE "pages"."id" = 1  (3.6ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 36ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-29 16:17:27 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (9.1ms) Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:17:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:17:27 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:17:27 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:17:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (49.4ms) Completed 200 OK in 54ms (Views: 51.3ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:17:29 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:17:29 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:17:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:17:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 18ms (Views: 11.3ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 16:17:34 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:17:34 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:17:34 UTC +00:00]]  (2.8ms) commit transaction Completed 200 OK in 86ms (Views: 0.1ms | ActiveRecord: 3.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:17:34 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 21ms (Views: 13.9ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:17:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 20ms (Views: 13.2ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:17:40 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 14.9ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:17:46 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:17:46 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:17:46 UTC +00:00]]  (4.5ms) commit transaction Completed 200 OK in 92ms (Views: 0.1ms | ActiveRecord: 5.1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:17:46 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.2ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 21ms (Views: 14.7ms | ActiveRecord: 0.2ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:18:42 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:18:42 -0700 Served asset /active_admin.css - 304 Not Modified (5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:18:42 -0700 Compiled active_admin/editor/core.js (117ms) (pid 7461) Compiled active_admin/editor.js (11ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (213ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:18:42 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:18:43 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 15.4ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=Howard_Carter-2012-hp.jpg" for 127.0.0.1 at 2012-05-29 16:18:47 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"Howard_Carter-2012-hp.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:18:47 UTC +00:00], ["dimensions", "---\n:width: 550\n:height: 143\n"], ["storage", "Howard_Carter-2012-hp.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:18:47 UTC +00:00]]  (3.1ms) commit transaction Completed 200 OK in 140ms (Views: 0.1ms | ActiveRecord: 3.9ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:18:47 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 15.8ms | ActiveRecord: 0.3ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-29 16:19:03 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "asset_scale"=>"on", "page"=>{"content"=>"\"\"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction  (0.3ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-29 23:19:03.405542' WHERE "pages"."id" = 1  (47.4ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 57ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-29 16:19:03 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.4ms) Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:19:03 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:19:03 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:19:03 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:19:05 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.5ms) Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:19:05 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:19:05 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:19:05 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:19:08 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 15.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:21:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.6ms) Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:21:04 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:21:04 -0700 Compiled active_admin/editor/jquery.paginate.min.js (0ms) (pid 7461) Compiled active_admin/editor.js (43ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (172ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:21:05 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:21:07 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:21:24 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 21ms (Views: 14.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:23:56 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (17.8ms) Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:23:56 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:23:56 -0700 Compiled active_admin/editor/core.js (208ms) (pid 7461) Compiled active_admin/editor.js (19ms) (pid 7461) Compiled active_admin.js (5ms) (pid 7461) Served asset /active_admin.js - 200 OK (345ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:23:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:23:58 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 27ms (Views: 17.5ms | ActiveRecord: 0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:24:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (53.3ms) Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:24:28 -0700 Compiled active_admin/editor/core.js (123ms) (pid 7461) Compiled active_admin/editor.js (17ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (243ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:24:28 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:24:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:24:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 15.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:25:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:25:08 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:25:08 -0700 Compiled active_admin/editor/core.js (185ms) (pid 7461) Compiled active_admin/editor.js (30ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (327ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:25:08 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:25:09 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 25ms (Views: 16.7ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:26:06 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1339ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1411.0ms) Completed 200 OK in 1415ms (Views: 1412.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:26:08 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:26:08 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:26:08 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:26:10 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 62ms (Views: 14.5ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:26:23 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1155ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1236.0ms) Completed 200 OK in 1240ms (Views: 1238.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:26:24 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:26:24 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:26:24 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:26:25 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 15.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:26:44 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1216ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1311.8ms) Completed 200 OK in 1315ms (Views: 1313.7ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:26:45 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:26:45 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:26:46 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:26:46 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 14.7ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:26:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.3ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:26:53 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:26:53 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:26:53 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:26:54 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 60ms (Views: 52.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:27:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1161ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1256.4ms) Completed 200 OK in 1260ms (Views: 1258.3ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:27:16 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:27:16 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:27:17 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:27:18 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 15.5ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:27:34 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1248ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1327.0ms) Completed 200 OK in 1331ms (Views: 1328.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:27:35 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:27:35 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:27:36 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:27:36 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 15.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:27:54 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1174ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1298.4ms) Completed 200 OK in 1302ms (Views: 1300.1ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:27:55 -0700 Served asset /active_admin.css - 200 OK (11ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:27:55 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:27:55 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:27:57 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 14.8ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:28:28 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:28:28 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:28:28 -0700 Compiled active_admin/editor/core.js (146ms) (pid 7461) Compiled active_admin/editor.js (22ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (335ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:28:29 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:28:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 61ms (Views: 52.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:28:43 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1261ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1350.7ms) Completed 200 OK in 1355ms (Views: 1352.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:28:44 -0700 Served asset /active_admin.js - 304 Not Modified (3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:28:44 -0700 Served asset /active_admin.css - 200 OK (9ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:28:45 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:28:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 15.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:29:07 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Compiled active_admin.css (1208ms) (pid 7461) Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (1451.4ms) Completed 200 OK in 1455ms (Views: 1453.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:29:09 -0700 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:29:09 -0700 Served asset /active_admin.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:29:09 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:29:10 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 22ms (Views: 15.2ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:29:57 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.5ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:29:57 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:29:57 -0700 Compiled active_admin/editor/core.js (142ms) (pid 7461) Compiled active_admin/editor.js (15ms) (pid 7461) Compiled active_admin.js (4ms) (pid 7461) Served asset /active_admin.js - 200 OK (235ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:29:57 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:29:58 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 26ms (Views: 16.9ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 16:30:43 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:30:45 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:30:45 UTC +00:00]]  (3.7ms) commit transaction Completed 200 OK in 1091ms (Views: 0.1ms | ActiveRecord: 4.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:30:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 17.3ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:30:53 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.8ms) Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:30:54 -0700 Served asset /active_admin.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:30:54 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:30:54 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:30:56 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 17.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:31:00 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (73.0ms) Completed 200 OK in 77ms (Views: 74.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:31:00 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:31:00 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:31:00 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:01 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 16.8ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 16.0ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:32 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 15.8ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:32 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 15.7ms | ActiveRecord: 0.4ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:34 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 16.5ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:35 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 24ms (Views: 16.1ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:31:41 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:31:41 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:31:41 UTC +00:00]]  (2.9ms) commit transaction Completed 200 OK in 90ms (Views: 0.1ms | ActiveRecord: 3.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:31:41 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 23ms (Views: 16.7ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:33:04 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.6ms) Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:33:04 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:33:04 -0700 Compiled active_admin/editor/core.js (150ms) (pid 7461) Compiled active_admin/editor.js (12ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (262ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:33:04 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:33:06 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 28ms (Views: 19.7ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:33:09 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:33:09 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:33:09 UTC +00:00]]  (2.7ms) commit transaction Completed 200 OK in 494ms (Views: 0.1ms | ActiveRecord: 3.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:33:26 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.5ms) Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:33:26 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:33:26 -0700 Compiled active_admin/editor/core.js (119ms) (pid 7461) Compiled active_admin/editor.js (16ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (248ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:33:26 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:33:27 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 28ms (Views: 20.1ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:33:30 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:33:31 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:33:31 UTC +00:00]]  (3.3ms) commit transaction Completed 200 OK in 102ms (Views: 0.1ms | ActiveRecord: 4.0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:33:31 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 28ms (Views: 20.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:33:51 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.7ms) Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:33:51 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:33:51 -0700 Compiled active_admin/editor/core.js (122ms) (pid 7461) Compiled active_admin/editor.js (13ms) (pid 7461) Compiled active_admin.js (5ms) (pid 7461) Served asset /active_admin.js - 200 OK (282ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:33:52 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:33:53 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 31ms (Views: 22.5ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:33:56 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:33:56 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:33:56 UTC +00:00]]  (2.9ms) commit transaction Completed 200 OK in 498ms (Views: 0.2ms | ActiveRecord: 3.7ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:33:57 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 30ms (Views: 22.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:34:30 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.9ms) Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:34:31 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:34:31 -0700 Compiled active_admin/editor/core.js (124ms) (pid 7461) Compiled active_admin/editor.js (22ms) (pid 7461) Compiled active_admin.js (54ms) (pid 7461) Served asset /active_admin.js - 200 OK (288ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:34:31 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:34:33 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 31ms (Views: 22.8ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=57056_435442738470_535763470_5037008_1205729_o.jpg" for 127.0.0.1 at 2012-05-29 16:34:36 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"57056_435442738470_535763470_5037008_1205729_o.jpg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:34:37 UTC +00:00], ["dimensions", "---\n:width: 1365\n:height: 1365\n"], ["storage", "57056_435442738470_535763470_5037008_1205729_o.jpg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:34:37 UTC +00:00]]  (4.1ms) commit transaction Completed 200 OK in 952ms (Views: 0.1ms | ActiveRecord: 4.8ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:34:37 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 76ms (Views: 68.9ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:36:52 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.1ms) Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:36:52 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:36:52 -0700 Compiled active_admin/editor/core.js (210ms) (pid 7461) Compiled active_admin/editor.js (22ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (391ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:36:52 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:36:53 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 33ms (Views: 23.2ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:37:08 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (36.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:37:08 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:37:08 UTC +00:00]]  (3.4ms) commit transaction Completed 200 OK in 103ms (Views: 0.1ms | ActiveRecord: 40.1ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:37:08 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 31ms (Views: 24.1ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:37:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (20.1ms) Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:37:27 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:37:27 -0700 Compiled active_admin/editor/core.js (118ms) (pid 7461) Compiled active_admin/editor.js (15ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (208ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:37:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:37:30 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 34ms (Views: 25.6ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:37:33 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:37:33 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:37:33 UTC +00:00]]  (2.9ms) commit transaction Completed 200 OK in 666ms (Views: 0.1ms | ActiveRecord: 3.6ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:37:33 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 31ms (Views: 24.4ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:37:48 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.0ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:37:48 -0700 Compiled active_admin/editor/core.js (175ms) (pid 7461) Compiled active_admin/editor.js (15ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (266ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:37:49 -0700 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:37:49 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:37:50 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 72ms (Views: 62.6ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:37:53 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:37:53 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:37:53 UTC +00:00]]  (3.8ms) commit transaction Completed 200 OK in 115ms (Views: 0.1ms | ActiveRecord: 4.5ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:37:53 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 34ms (Views: 27.0ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:38:12 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (21.1ms) Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:38:12 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:38:12 -0700 Compiled active_admin/editor/core.js (172ms) (pid 7461) Compiled active_admin/editor.js (63ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (275ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:38:12 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:38:13 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 34ms (Views: 26.2ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=sonic.gif" for 127.0.0.1 at 2012-05-29 16:38:16 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"sonic.gif"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:38:17 UTC +00:00], ["dimensions", "---\n:width: 290\n:height: 360\n"], ["storage", "sonic.gif"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:38:17 UTC +00:00]]  (2.9ms) commit transaction Completed 200 OK in 503ms (Views: 0.1ms | ActiveRecord: 3.6ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:38:17 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 68ms (Views: 60.6ms | ActiveRecord: 0.3ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:38:27 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (19.4ms) Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:38:28 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:38:28 -0700 Compiled active_admin/editor/core.js (119ms) (pid 7461) Compiled active_admin/editor.js (12ms) (pid 7461) Compiled active_admin.js (3ms) (pid 7461) Served asset /active_admin.js - 200 OK (215ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:38:28 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:38:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 36ms (Views: 27.6ms | ActiveRecord: 0.4ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:38:32 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:38:32 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:38:32 UTC +00:00]]  (3.3ms) commit transaction Completed 200 OK in 91ms (Views: 0.1ms | ActiveRecord: 4.0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:38:32 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 35ms (Views: 28.4ms | ActiveRecord: 0.3ms) Started PUT "/admin/pages/1" for 127.0.0.1 at 2012-05-29 16:39:14 -0700 Processing by Admin::PagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sb6jD4ZRQOoVDjHPuGSkPN7gz5EQBJWedFjx7xFf4g4=", "asset_scale"=>"on", "page"=>{"content"=>"\"\"\"\"\"\"Test pages", "title"=>"test page"}, "_wysihtml5_mode"=>"1", "commit"=>"Update Page", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction  (0.3ms) UPDATE "pages" SET "content" = 'Test pages', "updated_at" = '2012-05-29 23:39:14.589956' WHERE "pages"."id" = 1  (55.9ms) commit transaction Redirected to http://localhost:3000/admin/pages/1 Completed 302 Found in 70ms (ActiveRecord: 0.0ms) Started GET "/admin/pages/1" for 127.0.0.1 at 2012-05-29 16:39:14 -0700 Processing by Admin::PagesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/show.html.arb (8.3ms) Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:39:14 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:39:14 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:39:14 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/pages" for 127.0.0.1 at 2012-05-29 16:39:17 -0700 Processing by Admin::PagesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Exists (0.2ms) SELECT 1 FROM "pages" LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "pages"   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "pages" LIMIT 30 OFFSET 0) subquery_for_count Page Load (0.1ms) SELECT "pages".* FROM "pages" ORDER BY "pages"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (110.5ms) Completed 200 OK in 177ms (Views: 173.7ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:39:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:39:18 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2012-05-29 16:39:18 -0700 Served asset /active_admin/orderable.png - 304 Not Modified (17ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 16:39:18 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:39:18 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 16:39:18 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (1ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:39:20 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (18.0ms) Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:39:20 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:39:20 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:39:20 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:39:21 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 34ms (Views: 27.2ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=mock_video.mp4" for 127.0.0.1 at 2012-05-29 16:39:27 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"mock_video.mp4"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.0ms) begin transaction  (0.0ms) rollback transaction Completed 500 Internal Server Error in 4ms ActiveRecord::RecordInvalid (Validation failed: Storage You are not allowed to upload "mp4" files, allowed types: ["jpg", "jpeg", "gif", "png"]): activerecord (3.2.3) lib/active_record/validations.rb:56:in `save!' activerecord (3.2.3) lib/active_record/attribute_methods/dirty.rb:33:in `save!' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `block in save!' activerecord (3.2.3) lib/active_record/transactions.rb:295:in `block in with_transaction_returning_status' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:208:in `transaction' activerecord (3.2.3) lib/active_record/transactions.rb:293:in `with_transaction_returning_status' activerecord (3.2.3) lib/active_record/transactions.rb:246:in `save!' /Users/ejholmes/Source/active_admin_editor/lib/active_admin/editor/admin/assets.rb:51:in `create' actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__520859903627658324__process_action__807954979602935035__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action' activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.3) lib/journey/router.rb:68:in `block in call' journey (1.0.3) lib/journey/router.rb:56:in `each' journey (1.0.3) lib/journey/router.rb:56:in `call' actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call' sass (3.1.15) lib/sass/plugin/rack.rb:54:in `call' warden (1.1.1) lib/warden/manager.rb:35:in `block in call' warden (1.1.1) lib/warden/manager.rb:34:in `catch' warden (1.1.1) lib/warden/manager.rb:34:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.1) lib/rack/etag.rb:23:in `call' rack (1.4.1) lib/rack/conditionalget.rb:35:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context' rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call' activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__852642000050610516__call__4334485285942828652__callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app' railties (3.2.3) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.1) lib/rack/methodoverride.rb:21:in `call' rack (1.4.1) lib/rack/runtime.rb:17:in `call' activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.1) lib/rack/lock.rb:15:in `call' actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call' railties (3.2.3) lib/rails/engine.rb:479:in `call' railties (3.2.3) lib/rails/application.rb:220:in `call' rack (1.4.1) lib/rack/content_length.rb:14:in `call' railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call' rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:39:27 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 33ms (Views: 26.7ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:39:44 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 33ms (Views: 26.6ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:39:45 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 36ms (Views: 29.1ms | ActiveRecord: 0.3ms) Started POST "/admin/image_assets.json?qqfile=download.jpeg" for 127.0.0.1 at 2012-05-29 16:39:59 -0700 Processing by Admin::ImageAssetsController#create as JSON Parameters: {"qqfile"=>"download.jpeg"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "assets" ("created_at", "dimensions", "storage", "type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 May 2012 23:39:59 UTC +00:00], ["dimensions", "---\n:width: 259\n:height: 194\n"], ["storage", "download.jpeg"], ["type", "ImageAsset"], ["updated_at", Tue, 29 May 2012 23:39:59 UTC +00:00]]  (2.7ms) commit transaction Completed 200 OK in 93ms (Views: 0.1ms | ActiveRecord: 3.4ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:39:59 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 36ms (Views: 29.6ms | ActiveRecord: 0.4ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:40:28 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 34ms (Views: 27.7ms | ActiveRecord: 0.3ms) Started GET "/admin/image_assets.json" for 127.0.0.1 at 2012-05-29 16:40:29 -0700 Processing by Admin::ImageAssetsController#index as JSON AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Load (0.4ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Completed 200 OK in 37ms (Views: 30.0ms | ActiveRecord: 0.4ms) Started GET "/admin/pages/1/edit" for 127.0.0.1 at 2012-05-29 16:41:15 -0700 Processing by Admin::PagesController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", "1"]] Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/edit.html.arb (60.9ms) Completed 200 OK in 65ms (Views: 62.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:41:15 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:41:15 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:41:15 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:41:17 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin/image_assets" for 127.0.0.1 at 2012-05-29 16:41:18 -0700 Processing by Admin::ImageAssetsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 ImageAsset Exists (0.2ms) SELECT 1 FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "assets" WHERE "assets"."type" IN ('ImageAsset')  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "assets" WHERE "assets"."type" IN ('ImageAsset') LIMIT 30 OFFSET 0) subquery_for_count ImageAsset Load (0.3ms) SELECT "assets".* FROM "assets" WHERE "assets"."type" IN ('ImageAsset') ORDER BY "assets"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/resource/index.html.arb (79.1ms) Completed 200 OK in 83ms (Views: 80.3ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:41:18 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:41:18 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:41:18 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2012-05-29 16:41:18 -0700 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-nipple.png" for 127.0.0.1 at 2012-05-29 16:41:18 -0700 Served asset /active_admin/datepicker/datepicker-nipple.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 127.0.0.1 at 2012-05-29 16:41:21 -0700 Served asset /active_admin/nested_menu_arrow_dark.gif - 304 Not Modified (0ms) Started GET "/admin" for 127.0.0.1 at 2012-05-29 16:41:22 -0700 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/ejholmes/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/activeadmin-0.4.3/app/views/active_admin/dashboard/index.html.arb (6.6ms) Completed 200 OK in 81ms (Views: 78.4ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2012-05-29 16:41:23 -0700 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2012-05-29 16:41:23 -0700 Served asset /active_admin.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/nested_menu_arrow.gif" for 127.0.0.1 at 2012-05-29 16:41:23 -0700 Served asset /active_admin/nested_menu_arrow.gif - 304 Not Modified (0ms)