Started GET "/" for 127.0.0.1 at 2015-04-27 16:13:25 -0500 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.1) lib/active_record/migration.rb:374:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.9ms)  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150109192212)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150109192212_create_revelry_content_contents.rb:8)  (0.5ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150109192212"]]  (1.0ms) commit transaction Migrating to CreateVersions (20150109192213)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150109192213"]]  (0.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms)  SELECT sql FROM sqlite_master WHERE name='index_revelry_content_versions_on_item_type_and_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_revelry_content_versions_on_item_type_and_item_id' AND type='index'  DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-04-27 16:13:47 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (12.4ms) Completed 500 Internal Server Error in 1004ms (ActiveRecord: 0.1ms) ActionView::Template::Error (couldn't find file 'revelry_content/editors' with type 'application/javascript'): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", "data-turbolinks-track" => true %> 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %> 7: <%= csrf_meta_tags %> 8: 9: app/assets/javascripts/application.js:1 app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___951494189622094037_70092889847300' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.7ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.2ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150427211438)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)  (0.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "revelry_content_contents" already exists: CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)  (0.0ms) rollback transaction DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"  (1.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime)   (0.9ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.1ms) select sqlite_version(*)  (0.9ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213')  (1.0ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.1ms) select sqlite_version(*)  (0.8ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:08 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.1) lib/active_record/migration.rb:374:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.4ms) Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:15 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.1) lib/active_record/migration.rb:374:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150427211438)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)  (0.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "revelry_content_contents" already exists: CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)  (0.1ms) rollback transaction  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150427211438)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)  (0.4ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427211438"]]  (0.6ms) commit transaction Migrating to CreateVersions (20150427211439)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "revelry_content_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.7ms) rollback transaction DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:43 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.1) lib/active_record/migration.rb:374:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.8ms) Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:45 -0500 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.1) lib/active_record/migration.rb:374:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.7ms)  (1.2ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime)   (1.1ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.1ms) select sqlite_version(*)  (0.9ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213')  (1.0ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.1ms) select sqlite_version(*)  (0.8ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT version FROM "schema_migrations"  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150427211438)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)  (0.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "revelry_content_contents" already exists: CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)  (0.0ms) rollback transaction  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150427211438)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)  (0.4ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427211438"]]  (0.7ms) commit transaction Migrating to CreateVersions (20150427211439)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "revelry_content_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.4ms) rollback transaction DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRevelryContentContents (20150427211438)  (0.1ms) begin transaction DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)  (0.4ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427211438"]]  (0.6ms) commit transaction Migrating to CreateVersions (20150427212126)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "revelry_content_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "item_type_and_id" ON "revelry_content_content_versions" ("item_type", "item_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427212126"]]  (0.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='item_type_and_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='item_type_and_id' AND type='index'  DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-04-27 16:21:51 -0500 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.0ms) Completed 500 Internal Server Error in 990ms (ActiveRecord: 0.3ms) ActionView::Template::Error (couldn't find file 'revelry_content/editors' with type 'application/javascript'): 3: 4: Dummy 5: <%= stylesheet_link_tag "application", "data-turbolinks-track" => true %> 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %> 7: <%= csrf_meta_tags %> 8: 9: app/assets/javascripts/application.js:1 app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2577837555170474351_70271202195140' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.0ms) Started GET "/" for 127.0.0.1 at 2015-04-27 16:59:32 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (1.8ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.2ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.7ms) Completed 200 OK in 8491ms (Views: 8472.3ms | ActiveRecord: 1.8ms) Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500 Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 16:59:45 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 16:59:59 -0500 ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature: gem 'responders', '~> 2.0' Consult the Rails upgrade guide for details.): actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.6ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (5.4ms) Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:00:01 -0500 ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature: gem 'responders', '~> 2.0' Consult the Rails upgrade guide for details.): actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (4.5ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:00:05 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:00:53 -0500 ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature: gem 'responders', '~> 2.0' Consult the Rails upgrade guide for details.): actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (4.7ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-04-27 17:01:50 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (3.0ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.5ms) Completed 200 OK in 743ms (Views: 740.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:52 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:02:04 -0500 ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature: gem 'responders', '~> 2.0' Consult the Rails upgrade guide for details.): actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (3.9ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.6ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:03:19 -0500 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature: gem 'responders', '~> 2.0' Consult the Rails upgrade guide for details.): actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `' /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (5.4ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:04:24 -0500 ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by RevelryContent::ContentsController#create as JSON Parameters: {"authenticity_token"=>"1Itr4PVgWEFsKLBRCkjrT0z/yuCH+rlrm9/gC36FH9jHx6DW/3pN+0qVN392Lcn5Gt17VgNbPdBhOsmgi78j6w==", "content"=>{"key"=>"home.headline", "content"=>"Very Cool Default Headline"}} RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Unpermitted parameter: content RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.headline"]] Unpermitted parameter: key  (0.1ms) begin transaction RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = 'home.headline' LIMIT 1 SQL (0.7ms) INSERT INTO "revelry_content_contents" ("key", "last_whodunnit", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["key", "home.headline"], ["last_whodunnit", "#"], ["content", "Very Cool Default Headline"], ["created_at", "2015-04-27 22:04:24.508036"], ["updated_at", "2015-04-27 22:04:24.508036"]] SQL (0.3ms) INSERT INTO "revelry_content_content_versions" ("event", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?) [["event", "create"], ["whodunnit", "#"], ["item_id", 1], ["item_type", "RevelryContent::Content"], ["created_at", "2015-04-27 22:04:24.532872"]]  (0.9ms) commit transaction RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 200 OK in 90ms (Views: 12.2ms | ActiveRecord: 3.6ms) Started GET "/revelry_contentcontents" for 127.0.0.1 at 2015-04-27 17:04:59 -0500 Processing by RevelryContent::ContentsController#index as HTML RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/index.html.erb within layouts/revelry_content/application (3.4ms) Completed 200 OK in 1099ms (Views: 1095.0ms | ActiveRecord: 0.3ms) Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started GET "/revelry_content/versions/" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Processing by RevelryContent::VersionsController#index as JSON RevelryContent::Content Load (0.8ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::ContentVersion Load (0.4ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions" Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 1.2ms) Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 17:05:01 -0500 Started DELETE "/revelry_contentversions/null/revert_all_to" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Processing by RevelryContent::VersionsController#revert_all_to as HTML Parameters: {"authenticity_token"=>"n6binuaCnOJKaUUtCeikf06qot3jMozIqUQsahu8gbGM6imo7JiJWGzUwgN1jYbJGIgTa2eTCHNToQXB7oa9gg==", "id"=>"null"} RevelryContent::ContentVersion Load (0.3ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions" WHERE (id >= 'null') ORDER BY id desc Redirected to http://localhost:3000/revelry_contentcontents Completed 302 Found in 3ms (ActiveRecord: 0.3ms) Started GET "/revelry_contentcontents" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Processing by RevelryContent::ContentsController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/index.html.erb within layouts/revelry_content/application (0.1ms) Completed 200 OK in 53ms (Views: 51.2ms | ActiveRecord: 0.2ms) Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Started GET "/revelry_content/versions/" for 127.0.0.1 at 2015-04-27 17:05:11 -0500 Processing by RevelryContent::VersionsController#index as JSON RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::ContentVersion Load (0.2ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions" Completed 200 OK in 6ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:06:01 -0500 Started GET "/revelry_contentcontents" for 127.0.0.1 at 2015-04-27 17:32:43 -0500 Processing by RevelryContent::ContentsController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (1.0ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/index.html.erb within layouts/revelry_content/application (0.5ms) Completed 200 OK in 144ms (Views: 92.2ms | ActiveRecord: 1.8ms) Started GET "/assets/revelry_content/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Started GET "/revelry_content/versions/" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 Processing by RevelryContent::VersionsController#index as JSON RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::ContentVersion Load (0.3ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions" Completed 200 OK in 17ms (Views: 4.4ms | ActiveRecord: 1.5ms) Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 17:32:44 -0500 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.4ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-04-27 22:14:25 -0500 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.7ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.3ms) Completed 200 OK in 732ms (Views: 727.1ms | ActiveRecord: 0.3ms) Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500 Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 22:14:47 -0500 Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 22:18:35 -0500 Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 22:19:39 -0500 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 14:45:39 -0500 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (6.0ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.4ms) Completed 200 OK in 796ms (Views: 766.3ms | ActiveRecord: 0.9ms) Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500 Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 14:52:24 -0500 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.6ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 14:56:03 -0500 ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.6ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.4ms) Completed 200 OK in 697ms (Views: 692.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500 Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 14:56:09 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 14:56:18 -0500 Processing by RevelryContent::ContentsController#create as JSON Parameters: {"authenticity_token"=>"iH6bdg2bnRLI818zC0bWHjxlgBOandjMXbCoKNr6KvabMlBAB4GIqO5O2B13I/SoakcxpR48XHenVYGDL8AWxQ==", "content"=>{"key"=>"home.headline", "content"=>"Very Cool Default Headline!!!"}} RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Unpermitted parameter: content RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.headline"]] Unpermitted parameter: key  (0.1ms) begin transaction RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE ("revelry_content_contents"."key" = 'home.headline' AND "revelry_content_contents"."id" != 1) LIMIT 1 DEPRECATION WARNING: `serialized_attributes` is deprecated without replacement, and will be removed in Rails 5.0. (called from create at /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:17) SQL (0.6ms) UPDATE "revelry_content_contents" SET "last_whodunnit" = ?, "content" = ?, "updated_at" = ? WHERE "revelry_content_contents"."id" = ? [["last_whodunnit", "#"], ["content", "Very Cool Default Headline!!!"], ["updated_at", "2015-05-04 19:56:18.959318"], ["id", 1]] SQL (0.6ms) INSERT INTO "revelry_content_content_versions" ("event", "object", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?, ?) [["event", "update"], ["object", "---\nid: 1\ntype: \nkey: home.headline\ncontent: Very Cool Default Headline\nsrc: \nlast_whodunnit: \"#\"\ncreated_at: 2015-04-27 22:04:24.508036000 Z\nupdated_at: 2015-04-27 22:04:24.508036000 Z\n"], ["whodunnit", "#"], ["item_id", 1], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 19:56:18.983305"]]  (0.6ms) commit transaction RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 200 OK in 55ms (Views: 0.8ms | ActiveRecord: 3.1ms) Started GET "/" for 127.0.0.1 at 2015-05-04 14:57:10 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (3.4ms) Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) ActionView::Template::Error (wrong number of arguments (2 for 1)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328052771400' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.8ms) Started GET "/" for 127.0.0.1 at 2015-05-04 14:57:54 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (1.9ms) Completed 500 Internal Server Error in 26ms (ActiveRecord: 1.2ms) ActionView::Template::Error (wrong number of arguments (1 for 0)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328121105320' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.2ms) Started GET "/" for 127.0.0.1 at 2015-05-04 14:58:22 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.6ms) Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (1 for 0)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328121105320' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms) Started GET "/" for 127.0.0.1 at 2015-05-04 14:58:37 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (1.9ms) Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) ActionView::Template::Error (wrong number of arguments (1 for 0)): 4: } 5: 6: 7:

<%= revelry_text('home.headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328084449040' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.5ms) Started GET "/" for 127.0.0.1 at 2015-05-04 14:58:57 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.4ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.6ms) Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.8ms) ActionView::Template::Error (wrong number of arguments (1 for 0)): 4: } 5: 6: 7:

<%= revelry_text('home.headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328084449040' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms) Started GET "/" for 127.0.0.1 at 2015-05-04 14:59:49 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (1.4ms) Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.5ms) ActionView::Template::Error (wrong number of arguments (1 for 0)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328110591840' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.2ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:08 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.9ms) Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.8ms) ActionView::Template::Error (wrong number of arguments (1 for 0)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328110591840' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.8ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:20 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.0ms) Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (0 for 2)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.1ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:40 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.5ms) Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) ActionView::Template::Error (wrong number of arguments (0 for 2)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.8ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:42 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.6ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (1.0ms) Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.6ms) ActionView::Template::Error (wrong number of arguments (0 for 2)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.5ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:03 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (1.0ms) Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.5ms) ActionView::Template::Error (wrong number of arguments (0 for 2)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:04 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.6ms) Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (0 for 2)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.9ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:18 -0500 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.3ms) Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms) ActionView::Template::Error (wrong number of arguments (2 for 1)): 4: } 5: 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__1670287767257472976_70179698515680' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.8ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:49 -0500 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (3.9ms) Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.3ms) ActionView::Template::Error (wrong number of arguments (1 for 2)): 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %> 10: 11:
12: <%= editable_text(@revelry_content_contents, 'home.paragraph', current_user, default_text: <<-IPSUM app/views/home/index.html.erb:9:in `_app_views_home_index_html_erb___3896413630115490879_70241154780300' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.9ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:12:34 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (8.5ms) Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.6ms) ActionView::Template::Error (undefined method `revelry_image' for #<#:0x007fc493a828e8>): 6: 7:

<%= revelry_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_image('home.image', default: 'http://placehold.it/200x200') %> 10: 11:
12: <%= revelry_text('home.paragraph', default: <<-IPSUM app/views/home/index.html.erb:9:in `_app_views_home_index_html_erb___3896413630115490879_70241133792120' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.0ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:12:50 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (10.9ms) Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms) ActionView::Template::Error (undefined method `revelry_content_text' for #<#:0x007fc497507f90>): 4: } 5: 6: 7:

<%= revelry_content_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___3896413630115490879_70241164474080' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.4ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:13:05 -0500 ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (3.3ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.4ms) Completed 200 OK in 694ms (Views: 690.1ms | ActiveRecord: 0.2ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500 Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 15:13:10 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:13:18 -0500 Processing by RevelryContent::ContentsController#create as JSON Parameters: {"authenticity_token"=>"BzvNFn6F41YOF7saZ/pZwbFIV5JU1dh9FTKDuiEWOzwUdwYgdJ/27CiqPDQbn3t352rmJNB0XMbv16oR1CwHDw==", "content"=>{"key"=>"home.paragraph", "content"=>" dsafdsafdsafsafas long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"}} RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.2ms) ArgumentError (wrong number of arguments (1 for 2)): /Users/joel/src/revelry_content/lib/revelry_content/configuration.rb:34:in `block in default_authorization_policy' /Users/joel/src/revelry_content/lib/revelry_content/controller_concern.rb:9:in `call' /Users/joel/src/revelry_content/lib/revelry_content/controller_concern.rb:9:in `check_authorization' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (12.0ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:13:26 -0500 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:16:56 -0500 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (4.3ms) Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (1 for 2)): 4: } 5: 6: 7:

<%= revelry_content_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__403112639835675945_70340678398660' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.6ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:18:06 -0500 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (3.7ms) Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (1 for 2)): 4: } 5: 6: 7:

<%= revelry_content_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (25.9ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:18:09 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.6ms) Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (1 for 2)): 4: } 5: 6: 7:

<%= revelry_content_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:18:13 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.8ms) Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (1 for 2)): 4: } 5: 6: 7:

<%= revelry_content_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:19:02 -0500 Processing by HomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.6ms) Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.6ms) ActionView::Template::Error (wrong number of arguments (1 for 2)): 4: } 5: 6: 7:

<%= revelry_content_text('home.headline', default: 'Cool Default Headline') %>

8: 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %> 10: app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380' Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.2ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39) RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Started GET "/" for 127.0.0.1 at 2015-05-04 15:19:54 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (1.9ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.6ms) Completed 200 OK in 664ms (Views: 660.3ms | ActiveRecord: 0.1ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500 Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 15:19:58 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:04 -0500 Processing by RevelryContent::ContentsController#create as JSON Parameters: {"authenticity_token"=>"1BkKwdiFWub90XjSlggAAIaxkLc789DOOQWgDF3+9ArHVcH30p9PXNts//zqbSK20JMhAb9SVHXD4ImnqMTIOQ==", "content"=>{"key"=>"home.headline", "content"=>"Very Cool Default Headline!"}} RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Unpermitted parameter: content RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.headline"]] Unpermitted parameter: key  (0.1ms) begin transaction RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE ("revelry_content_contents"."key" = 'home.headline' AND "revelry_content_contents"."id" != 1) LIMIT 1 DEPRECATION WARNING: `serialized_attributes` is deprecated without replacement, and will be removed in Rails 5.0. (called from create at /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:17) SQL (0.4ms) UPDATE "revelry_content_contents" SET "last_whodunnit" = ?, "content" = ?, "updated_at" = ? WHERE "revelry_content_contents"."id" = ? [["last_whodunnit", "#"], ["content", "Very Cool Default Headline!"], ["updated_at", "2015-05-04 20:20:04.723218"], ["id", 1]] SQL (0.3ms) INSERT INTO "revelry_content_content_versions" ("event", "object", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?, ?) [["event", "update"], ["object", "---\nid: 1\ntype: \nkey: home.headline\ncontent: Very Cool Default Headline!!!\nsrc: \nlast_whodunnit: \"#\"\ncreated_at: 2015-04-27 22:04:24.508036000 Z\nupdated_at: 2015-05-04 19:56:18.959318000 Z\n"], ["whodunnit", "#"], ["item_id", 1], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:04.747769"]]  (0.8ms) commit transaction RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 200 OK in 58ms (Views: 0.8ms | ActiveRecord: 2.8ms) Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:21 -0500 Processing by RevelryContent::ContentsController#create as JSON Parameters: {"authenticity_token"=>"1BkKwdiFWub90XjSlggAAIaxkLc789DOOQWgDF3+9ArHVcH30p9PXNts//zqbSK20JMhAb9SVHXD4ImnqMTIOQ==", "content"=>{"key"=>"home.paragraph", "content"=>"fdadfasfsaf long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"}} RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Unpermitted parameter: content RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.paragraph"]] Unpermitted parameter: key  (0.1ms) begin transaction RevelryContent::Content Exists (0.3ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = 'home.paragraph' LIMIT 1 SQL (1.1ms) INSERT INTO "revelry_content_contents" ("key", "last_whodunnit", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["key", "home.paragraph"], ["last_whodunnit", "#"], ["content", "fdadfasfsaf long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"], ["created_at", "2015-05-04 20:20:21.497700"], ["updated_at", "2015-05-04 20:20:21.497700"]] SQL (0.2ms) INSERT INTO "revelry_content_content_versions" ("event", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?) [["event", "create"], ["whodunnit", "#"], ["item_id", 2], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:21.503336"]]  (1.4ms) commit transaction RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 200 OK in 20ms (Views: 1.7ms | ActiveRecord: 3.4ms) Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:33 -0500 Processing by RevelryContent::ContentsController#create as JSON Parameters: {"authenticity_token"=>"1BkKwdiFWub90XjSlggAAIaxkLc789DOOQWgDF3+9ArHVcH30p9PXNts//zqbSK20JMhAb9SVHXD4ImnqMTIOQ==", "content"=>{"key"=>"home.paragraph", "content"=>"fdadfasfsaf long-chain **hydrocarbons** vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"}} RevelryContent::Content Load (0.7ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Unpermitted parameter: content RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.paragraph"]] Unpermitted parameter: key  (0.0ms) begin transaction RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE ("revelry_content_contents"."key" = 'home.paragraph' AND "revelry_content_contents"."id" != 2) LIMIT 1 DEPRECATION WARNING: `serialized_attributes` is deprecated without replacement, and will be removed in Rails 5.0. (called from create at /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:17) SQL (0.2ms) UPDATE "revelry_content_contents" SET "last_whodunnit" = ?, "content" = ?, "updated_at" = ? WHERE "revelry_content_contents"."id" = ? [["last_whodunnit", "#"], ["content", "fdadfasfsaf long-chain **hydrocarbons** vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"], ["updated_at", "2015-05-04 20:20:33.897404"], ["id", 2]] SQL (0.1ms) INSERT INTO "revelry_content_content_versions" ("event", "object", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?, ?) [["event", "update"], ["object", "---\nid: 2\ntype: \nkey: home.paragraph\ncontent: |\n fdadfasfsaf long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\nsrc: \nlast_whodunnit: \"#\"\ncreated_at: 2015-05-04 20:20:21.497700000 Z\nupdated_at: 2015-05-04 20:20:21.497700000 Z\n"], ["whodunnit", "#"], ["item_id", 2], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:33.902331"]]  (1.2ms) commit transaction RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 200 OK in 21ms (Views: 1.3ms | ActiveRecord: 3.0ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.7ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.0ms) Completed 200 OK in 52ms (Views: 49.9ms | ActiveRecord: 0.1ms) Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500 Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:55 -0500 Processing by RevelryContent::ContentsController#create as JSON Parameters: {"content"=>{"src"=>#, @original_filename="Screen Shot 2015-05-04 at 9.50.48 AM.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"content[src]\"; filename=\"Screen Shot 2015-05-04 at 9.50.48 AM.png\"\r\nContent-Type: image/png\r\n">, "key"=>"home.image"}, "authenticity_token"=>"5tszgUQv7W/8i53LEvcVV4N73NDvYV7gZuQsYZsp9u/1l/i3TjX41do2GuVukjfh1VltZmvA2lucAQXKbhPK3A=="} RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Unpermitted parameter: src RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.image"]] Unpermitted parameter: key  (0.1ms) begin transaction RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = 'home.image' LIMIT 1 SQL (0.4ms) INSERT INTO "revelry_content_contents" ("key", "last_whodunnit", "src", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["key", "home.image"], ["last_whodunnit", "#"], ["src", "Screen_Shot_2015-05-04_at_9.50.48_AM.png"], ["created_at", "2015-05-04 20:20:55.713872"], ["updated_at", "2015-05-04 20:20:55.713872"]] SQL (0.4ms) INSERT INTO "revelry_content_content_versions" ("event", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?) [["event", "create"], ["whodunnit", "#"], ["item_id", 3], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:55.716864"]]  (0.7ms) commit transaction RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Completed 200 OK in 32ms (Views: 0.5ms | ActiveRecord: 2.3ms) Started GET "/" for 127.0.0.1 at 2015-05-04 15:21:23 -0500 Processing by HomeController#index as HTML RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" Rendered home/index.html.erb within layouts/application (0.8ms) Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.1ms) Completed 200 OK in 61ms (Views: 57.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500 Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500