(4232.4ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)  (451.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (102.4ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddUser (20170118093127)  (0.3ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddUser < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)  (879.3ms) CREATE TABLE "cavy_users" ("id" serial primary key, "email" character varying, "name" character varying, "password_digest" character varying, "auth_token" character varying, "role" character varying, "created_at" timestamp, "updated_at" timestamp) SQL (58.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170118093127"]]  (108.4ms) COMMIT Migrating to AddHstore (20170118093128)  (0.3ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddHstore < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)  (5601.5ms) CREATE EXTENSION hstore SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170118093128"]]  (67.3ms) COMMIT Migrating to AddPagesTable (20170118093129)  (0.4ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddPagesTable < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)  (2425.3ms) CREATE TABLE "cavy_pages" ("id" serial primary key, "title" hstore, "content" hstore, "data" hstore, "render" character varying, "route" character varying, "description" text, "tags" character varying[], "page_elements" json) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170118093129"]]  (52.1ms) COMMIT Migrating to AddItems (20170118093130)  (195.6ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddItems < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)  (1062.4ms) CREATE TABLE "cavy_items" ("id" serial primary key, "data" hstore, "position" integer) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170118093130"]]  (84.1ms) COMMIT Migrating to AddItemGroups (20170118093131)  (73.6ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddItemGroups < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)  (861.3ms) CREATE TABLE "cavy_item_groups" ("id" serial primary key, "title" character varying, "params" character varying[])  (288.4ms) ALTER TABLE "cavy_items" ADD "item_group_id" integer SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170118093131"]]  (64.7ms) COMMIT Migrating to AddItemSections (20170118093132)  (40.7ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddItemSections < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)  (371.2ms) CREATE TABLE "cavy_item_sections" ("id" serial primary key, "title" character varying, "item_groups" integer[]) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170118093132"]]  (15.7ms) COMMIT ActiveRecord::InternalMetadata Load (19.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (54.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2017-01-28 08:15:03 UTC], ["updated_at", 2017-01-28 08:15:03 UTC]]  (21.1ms) COMMIT  (0.3ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/" for ::1 at 2017-01-28 21:46:25 +0100 ActiveRecord::SchemaMigration Load (83.9ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Cavy::PagesController#page as HTML  (23.2ms) SELECT COUNT(*) FROM "cavy_users" Completed 500 in 167ms (ActiveRecord: 80.6ms) TypeError - no implicit conversion of Symbol into Hash: actionpack (5.0.1) lib/action_controller/metal/url_for.rb:34:in `url_options' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:228:in `call' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:295:in `block (2 levels) in define_url_helper' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:48:in `check_first_time' activesupport (5.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.1) lib/active_support/callbacks.rb:170:in `block in halting' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/f41bfb9535d8ab8e/variables" for ::1 at 2017-01-28 21:46:29 +0100 Started POST "/__better_errors/f41bfb9535d8ab8e/variables" for ::1 at 2017-01-28 21:46:32 +0100 Started POST "/__better_errors/f41bfb9535d8ab8e/variables" for ::1 at 2017-01-28 21:46:33 +0100 Started POST "/__better_errors/f41bfb9535d8ab8e/variables" for ::1 at 2017-01-28 21:46:34 +0100 Started GET "/" for ::1 at 2017-01-28 21:46:51 +0100 Processing by Cavy::PagesController#page as HTML  (0.4ms) SELECT COUNT(*) FROM "cavy_users" Completed 500 in 10ms (ActiveRecord: 1.7ms) TypeError - no implicit conversion of Symbol into Hash: actionpack (5.0.1) lib/action_controller/metal/url_for.rb:34:in `url_options' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:228:in `call' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:295:in `block (2 levels) in define_url_helper' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:48:in `check_first_time' activesupport (5.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.1) lib/active_support/callbacks.rb:170:in `block in halting' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/6eb01f4aff70d92c/variables" for ::1 at 2017-01-28 21:46:51 +0100 Started GET "/" for ::1 at 2017-01-28 21:47:01 +0100 Processing by Cavy::PagesController#page as HTML  (0.3ms) SELECT COUNT(*) FROM "cavy_users" Completed 500 in 9ms (ActiveRecord: 1.4ms) TypeError - no implicit conversion of Symbol into Hash: actionpack (5.0.1) lib/action_controller/metal/url_for.rb:34:in `url_options' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:228:in `call' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:295:in `block (2 levels) in define_url_helper' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:48:in `check_first_time' activesupport (5.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.1) lib/active_support/callbacks.rb:170:in `block in halting' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/0b3bc4b9b3b07c8e/variables" for ::1 at 2017-01-28 21:47:02 +0100 Started POST "/__better_errors/0b3bc4b9b3b07c8e/variables" for ::1 at 2017-01-28 21:47:04 +0100 Started POST "/__better_errors/0b3bc4b9b3b07c8e/variables" for ::1 at 2017-01-28 21:47:05 +0100 Started GET "/" for ::1 at 2017-01-28 21:47:28 +0100 Processing by Cavy::PagesController#page as HTML  (0.3ms) SELECT COUNT(*) FROM "cavy_users" Completed 500 in 22ms (ActiveRecord: 1.5ms) TypeError - no implicit conversion of Symbol into Hash: actionpack (5.0.1) lib/action_controller/metal/url_for.rb:34:in `url_options' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:228:in `call' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:295:in `block (2 levels) in define_url_helper' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:48:in `check_first_time' activesupport (5.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.1) lib/active_support/callbacks.rb:170:in `block in halting' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/7f5de57b2475c4a1/variables" for ::1 at 2017-01-28 21:47:28 +0100 Started POST "/__better_errors/7f5de57b2475c4a1/variables" for ::1 at 2017-01-28 21:47:30 +0100 Started POST "/__better_errors/7f5de57b2475c4a1/variables" for ::1 at 2017-01-28 21:47:31 +0100 Started POST "/__better_errors/7f5de57b2475c4a1/variables" for ::1 at 2017-01-28 21:47:36 +0100 Started GET "/" for 127.0.0.1 at 2017-01-28 21:52:01 +0100 ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Cavy::PagesController#page as HTML  (0.4ms) SELECT COUNT(*) FROM "cavy_users" Completed 500 in 17ms (ActiveRecord: 1.5ms) TypeError - no implicit conversion of Symbol into Hash: actionpack (5.0.1) lib/action_controller/metal/url_for.rb:34:in `url_options' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:228:in `call' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:295:in `block (2 levels) in define_url_helper' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:48:in `check_first_time' activesupport (5.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.1) lib/active_support/callbacks.rb:170:in `block in halting' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/a2089a92bcefba68/variables" for 127.0.0.1 at 2017-01-28 21:52:02 +0100 Started POST "/__better_errors/a2089a92bcefba68/variables" for 127.0.0.1 at 2017-01-28 21:52:04 +0100 Started POST "/__better_errors/a2089a92bcefba68/variables" for 127.0.0.1 at 2017-01-28 21:52:04 +0100 Started GET "/" for 127.0.0.1 at 2017-01-28 21:53:29 +0100 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Cavy::PagesController#page as HTML  (0.4ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 58ms (ActiveRecord: 2.1ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-28 21:53:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"}  (0.5ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users" Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time (1.8ms) Completed 200 OK in 832ms (Views: 783.4ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2017-01-28 21:55:38 +0100 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Cavy::PagesController#page as HTML  (0.4ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 113ms (ActiveRecord: 1.8ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-28 21:55:41 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"}  (0.4ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users" Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time (1.6ms) Completed 200 OK in 457ms (Views: 419.5ms | ActiveRecord: 0.5ms) Started GET "/" for 127.0.0.1 at 2017-01-28 22:31:14 +0100 ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Cavy::PagesController#page as HTML  (0.4ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 126ms (ActiveRecord: 1.7ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-28 22:31:16 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"}  (0.6ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users" Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time (2.6ms) Completed 200 OK in 1389ms (Views: 1219.0ms | ActiveRecord: 0.6ms) Started GET "/en/first_time/user" for 127.0.0.1 at 2017-01-28 22:31:20 +0100 Processing by Cavy::FirstTimeController#new_user as HTML Parameters: {"locale"=>"en"}  (0.4ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users" Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/new_user.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/new_user.html.erb within layouts/cavy/first_time (0.6ms) Completed 200 OK in 48ms (Views: 32.2ms | ActiveRecord: 0.4ms) Started POST "/en/first_time/user" for 127.0.0.1 at 2017-01-28 22:31:34 +0100 Processing by Cavy::FirstTimeController#create_user as HTML Parameters: {"name"=>"Thomas Muntaner", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "locale"=>"en"}  (0.4ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users"  (0.3ms) BEGIN Cavy::User Exists (72.0ms) SELECT 1 AS one FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Cavy::User Exists (0.5ms) SELECT 1 AS one FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] SQL (38.6ms) INSERT INTO "cavy_users" ("email", "name", "password_digest", "auth_token", "role", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["email", "thomas.muntaner@gmail.com"], ["name", "Thomas Muntaner"], ["password_digest", "$2a$10$EjGf2nZ.la7KroZu8Wjxje0r/IIsEs5/zJ9nRHx8xe.1L9uRB79UG"], ["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["role", "admin"], ["created_at", 2017-01-28 21:31:35 UTC], ["updated_at", 2017-01-28 21:31:35 UTC]]  (178.2ms) COMMIT Redirected to http://localhost:3000/en/admin Completed 302 Found in 1281ms (ActiveRecord: 952.4ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 22:31:36 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Cavy::ItemSection Load (72.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (96.5ms) Completed 200 OK in 355ms (Views: 123.9ms | ActiveRecord: 74.2ms) Started GET "/en/admin/signout" for 127.0.0.1 at 2017-01-28 22:31:44 +0100 Processing by Cavy::SessionsController#destroy as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Redirected to http://localhost:3000/en Completed 302 Found in 5ms (ActiveRecord: 0.4ms) Started GET "/en" for 127.0.0.1 at 2017-01-28 22:31:44 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"}  (0.4ms) SELECT COUNT(*) FROM "cavy_users" Cavy::Page Load (16.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (2.6ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (1.9ms) Completed 200 OK in 109ms (Views: 83.6ms | ActiveRecord: 18.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-28 22:31:52 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (3.0ms) Completed 200 OK in 82ms (Views: 55.0ms | ActiveRecord: 0.0ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-28 22:31:57 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"36mJtZX2QVamFfR/CStkERpGVRhZZv7bpjS/uwB+6n2nFYP/3CtrQJg/zs1a6AXjn78e+0J8x9HlMSy/nn1uWA==", "email"=>"", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", ""], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (3.0ms) Completed 200 OK in 25ms (Views: 21.0ms | ActiveRecord: 0.2ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-28 22:31:58 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k7g4s16OMjq6DkU1UnSPzVXwQ7pfEu+1J5xODwCgiH7rBDL5F1MYLIQkf4cBt+4/0AkIWUQI1r9kmd0LnqMMWw==", "email"=>"", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", ""], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (2.3ms) Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.3ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-28 22:33:39 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k7g4s16OMjq6DkU1UnSPzVXwQ7pfEu+1J5xODwCgiH7rBDL5F1MYLIQkf4cBt+4/0AkIWUQI1r9kmd0LnqMMWw==", "email"=>"", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", ""], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (2.8ms) Completed 200 OK in 20ms (Views: 16.8ms | ActiveRecord: 0.4ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-28 22:33:41 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k7g4s16OMjq6DkU1UnSPzVXwQ7pfEu+1J5xODwCgiH7rBDL5F1MYLIQkf4cBt+4/0AkIWUQI1r9kmd0LnqMMWw==", "email"=>"", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", ""], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (3.2ms) Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 0.3ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-28 22:34:07 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k7g4s16OMjq6DkU1UnSPzVXwQ7pfEu+1J5xODwCgiH7rBDL5F1MYLIQkf4cBt+4/0AkIWUQI1r9kmd0LnqMMWw==", "email"=>"", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", ""], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (2.5ms) Completed 200 OK in 20ms (Views: 16.6ms | ActiveRecord: 0.3ms)  (41.5ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddUser (20141111180022)  (0.3ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddUser < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (381.7ms) CREATE TABLE "cavy_users" ("id" serial primary key, "email" character varying, "name" character varying, "password_digest" character varying, "auth_token" character varying, "role" character varying, "created_at" timestamp, "updated_at" timestamp)  (0.3ms) ROLLBACK  (0.4ms) SELECT pg_advisory_unlock(7080462405313721235) Started GET "/" for 127.0.0.1 at 2017-01-28 23:18:34 +0100 Processing by Cavy::PagesController#page as HTML Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.0ms) Started GET "/en/" for 127.0.0.1 at 2017-01-28 23:18:34 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (4.8ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.8ms) Completed 200 OK in 107ms (Views: 87.6ms | ActiveRecord: 2.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 23:18:38 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/admin/signin Filter chain halted as :authorize rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-28 23:18:38 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (4.3ms) Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.0ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-28 23:18:48 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"5w9wMAjUTvOHa8YVMK6fAacR8WQtExPSCsjuKBAfiKOfs3p6QQlk5blB/Kdjbf7zIui6hzYJKthJzX0sjhwMhg==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/admin Completed 302 Found in 87ms (ActiveRecord: 3.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 23:18:48 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.7ms) Completed 200 OK in 33ms (Views: 25.9ms | ActiveRecord: 1.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 23:18:52 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.1ms) Completed 200 OK in 55ms (Views: 50.1ms | ActiveRecord: 0.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-28 23:18:55 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (19.0ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (2.5ms) Completed 200 OK in 61ms (Views: 40.8ms | ActiveRecord: 0.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:18:59 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (2.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Completed 200 OK in 32ms (Views: 26.7ms | ActiveRecord: 1.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:20:24 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.8ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (2.7ms) Completed 200 OK in 48ms (Views: 41.5ms | ActiveRecord: 1.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:21:18 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (2.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Completed 200 OK in 26ms (Views: 21.7ms | ActiveRecord: 1.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:22:32 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (2.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (2.4ms) Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 1.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:22:55 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (2.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Completed 200 OK in 25ms (Views: 19.7ms | ActiveRecord: 2.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:24:24 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.0ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Completed 200 OK in 138ms (Views: 130.9ms | ActiveRecord: 2.2ms) Started GET "/en/admin/new_page" for 127.0.0.1 at 2017-01-28 23:29:49 +0100 Processing by Cavy::AdminPagesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout (115.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Completed 200 OK in 276ms (Views: 240.2ms | ActiveRecord: 5.8ms) Started POST "/en/admin/page" for 127.0.0.1 at 2017-01-28 23:29:55 +0100 Processing by Cavy::AdminPagesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"phTJHrGOzLXrkrfcMueVqwH45TinnG9E0xxKknL7P8beqMNU+FPmo9W4jW5hJPRZhAGu27yGVk6QGdmW7Pi74w==", "page"=>{"title"=>"Home", "render"=>"home"}, "commit"=>"Submit", "locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (0.6ms) BEGIN Cavy::Page Exists (1.0ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" IS NULL LIMIT $1 [["LIMIT", 1]] SQL (51.5ms) INSERT INTO "cavy_pages" ("title", "render", "route", "page_elements") VALUES ($1, $2, $3, $4) RETURNING "id" [["title", "\"en\"=>\"Home\""], ["render", "home"], ["route", "home"], ["page_elements", "{}"]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 69ms (ActiveRecord: 55.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-28 23:29:55 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (1.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.1ms) Completed 200 OK in 51ms (Views: 19.4ms | ActiveRecord: 3.6ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:29:58 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.0ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.0ms) Completed 200 OK in 29ms (Views: 22.8ms | ActiveRecord: 2.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:32:05 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.4ms) Completed 200 OK in 148ms (Views: 141.8ms | ActiveRecord: 1.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:32:49 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.5ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Completed 200 OK in 30ms (Views: 23.1ms | ActiveRecord: 2.2ms) Started GET "/en/edit/home" for 127.0.0.1 at 2017-01-28 23:33:24 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"home"} Cavy::User Load (1.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (1.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Completed 500 in 47ms (ActiveRecord: 2.8ms) ActionView::MissingTemplate - Missing template cavy/pages/home, cavy/application/home with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :haml]}. Searched in: * "/Users/thomasmuntaner/Projects/Websites/cavy/app/views" : actionview (5.0.1) lib/action_view/path_set.rb:46:in `find' actionview (5.0.1) lib/action_view/lookup_context.rb:122:in `find' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:18:in `edit' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/51469b15b80f8db6/variables" for 127.0.0.1 at 2017-01-28 23:33:25 +0100 Started GET "/en/edit/home" for 127.0.0.1 at 2017-01-28 23:33:53 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"home"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Completed 500 in 7ms (ActiveRecord: 0.6ms) ActionView::MissingTemplate - Missing template cavy/pages/home, cavy/application/home with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :haml]}. Searched in: * "/Users/thomasmuntaner/Projects/Websites/cavy/app/views" : actionview (5.0.1) lib/action_view/path_set.rb:46:in `find' actionview (5.0.1) lib/action_view/lookup_context.rb:122:in `find' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:18:in `edit' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/80383b0b85b9265d/variables" for 127.0.0.1 at 2017-01-28 23:33:54 +0100 Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-28 23:34:01 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (40.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Completed 200 OK in 221ms (Views: 173.4ms | ActiveRecord: 0.9ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-01-28 23:34:11 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"n8v6Jm9ukgo/RXXR3DWNWoAsqK/zKB02xsDV3SSEwVLnd/BsJrO4HAFvT2OP9uyoBdXjTOgyJDyFxUbZuodFdw==", "page"=>{"render"=>"home", "route"=>"page", "tag_string"=>"", "description"=>"", "title"=>"Home"}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]] SQL (0.6ms) UPDATE "cavy_pages" SET "route" = $1, "description" = $2 WHERE "cavy_pages"."id" = $3 [["route", "page"], ["description", ""], ["id", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 13ms (ActiveRecord: 2.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-28 23:34:11 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Completed 200 OK in 43ms (Views: 20.5ms | ActiveRecord: 1.4ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-28 23:34:17 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Completed 500 in 8ms (ActiveRecord: 0.7ms) ActionView::MissingTemplate - Missing template cavy/pages/home, cavy/application/home with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :haml]}. Searched in: * "/Users/thomasmuntaner/Projects/Websites/cavy/app/views" : actionview (5.0.1) lib/action_view/path_set.rb:46:in `find' actionview (5.0.1) lib/action_view/lookup_context.rb:122:in `find' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:18:in `edit' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/e818690b87d0a1b7/variables" for 127.0.0.1 at 2017-01-28 23:34:18 +0100 Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-28 23:34:22 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (3.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.0ms) Completed 200 OK in 68ms (Views: 39.5ms | ActiveRecord: 1.0ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-01-28 23:34:29 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"mbveg1+WKZJqRcNU/k/p/gZzs2CK+NopG9pl8M7e7grhB9TJFksDhFRv+eatjIgMg4r4g5Hi4yNY3/b0UN1qLw==", "page"=>{"render"=>"page", "route"=>"page", "tag_string"=>"", "description"=>"", "title"=>"Home"}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]] SQL (0.5ms) UPDATE "cavy_pages" SET "render" = $1 WHERE "cavy_pages"."id" = $2 [["render", "page"], ["id", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 16ms (ActiveRecord: 2.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-28 23:34:29 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.2ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.2ms) Completed 200 OK in 39ms (Views: 19.3ms | ActiveRecord: 1.1ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-28 23:34:30 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.9ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.4ms) Completed 200 OK in 78ms (Views: 72.8ms | ActiveRecord: 1.1ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-28 23:34:33 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.9ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (3.0ms) Completed 200 OK in 27ms (Views: 21.9ms | ActiveRecord: 1.2ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-28 23:34:34 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.8ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.7ms) Completed 200 OK in 27ms (Views: 22.8ms | ActiveRecord: 0.9ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-28 23:34:34 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (2.0ms) Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.9ms) Completed 200 OK in 27ms (Views: 23.0ms | ActiveRecord: 0.9ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 23:36:08 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Completed 200 OK in 60ms (Views: 20.0ms | ActiveRecord: 1.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 23:36:10 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.1ms) Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 0.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-28 23:36:13 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (8.2ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (2.4ms) Completed 200 OK in 91ms (Views: 25.5ms | ActiveRecord: 0.7ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-28 23:36:18 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms)  (15.3ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (26.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.1ms) Completed 200 OK in 96ms (Views: 27.4ms | ActiveRecord: 18.6ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-28 23:36:25 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (9.8ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (2.9ms) Completed 200 OK in 58ms (Views: 35.9ms | ActiveRecord: 1.2ms) Started GET "/en/users/1" for 127.0.0.1 at 2017-01-28 23:36:29 +0100 Processing by Cavy::UsersController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout (5.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Completed 200 OK in 30ms (Views: 23.3ms | ActiveRecord: 0.9ms) Started GET "/en/users/1/edit" for 127.0.0.1 at 2017-01-28 23:36:34 +0100 Processing by Cavy::UsersController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (21.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout (28.0ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.0ms) Completed 200 OK in 114ms (Views: 49.7ms | ActiveRecord: 1.3ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-28 23:37:13 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (7.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.1ms) Completed 200 OK in 29ms (Views: 24.4ms | ActiveRecord: 1.2ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-28 23:38:25 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Completed 200 OK in 35ms (Views: 28.8ms | ActiveRecord: 1.1ms) Started GET "/de/users" for 127.0.0.1 at 2017-01-28 23:38:28 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"de"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.0ms) Completed 200 OK in 32ms (Views: 26.9ms | ActiveRecord: 1.0ms) Started GET "/wk/users" for 127.0.0.1 at 2017-01-28 23:38:29 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"wk"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.0ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.7ms) Completed 200 OK in 34ms (Views: 27.4ms | ActiveRecord: 1.0ms) Started GET "/en/users" for 127.0.0.1 at 2017-01-28 23:38:30 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.3ms) Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 1.0ms) Started GET "/en/users" for 127.0.0.1 at 2017-01-28 23:40:32 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (6.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (18.1ms) Completed 200 OK in 162ms (Views: 137.3ms | ActiveRecord: 1.2ms) Started GET "/en/users/new" for 127.0.0.1 at 2017-01-28 23:40:35 +0100 Processing by Cavy::UsersController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/new.html.haml within layouts/cavy/admin_layout (40.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.2ms) Completed 200 OK in 79ms (Views: 61.2ms | ActiveRecord: 0.6ms) Started GET "/en/users/new" for 127.0.0.1 at 2017-01-28 23:43:25 +0100 Processing by Cavy::UsersController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (6.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/new.html.haml within layouts/cavy/admin_layout (27.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (19.0ms) Completed 200 OK in 184ms (Views: 160.9ms | ActiveRecord: 0.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-28 23:43:28 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.1ms) Completed 200 OK in 45ms (Views: 21.3ms | ActiveRecord: 1.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-28 23:43:42 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.8ms) Completed 200 OK in 91ms (Views: 30.4ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-28 23:43:44 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.9ms) Completed 200 OK in 35ms (Views: 29.5ms | ActiveRecord: 1.1ms) Started GET "/en/admin/new_page" for 127.0.0.1 at 2017-01-28 23:46:39 +0100 Processing by Cavy::AdminPagesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout (2.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Completed 200 OK in 88ms (Views: 82.9ms | ActiveRecord: 0.7ms) Started GET "/" for 127.0.0.1 at 2017-01-29 21:32:25 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (16.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 317ms (ActiveRecord: 58.6ms) Started GET "/en/" for 127.0.0.1 at 2017-01-29 21:32:28 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (58.4ms) Cavy::Page Load (139.1ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (176.8ms) Completed 200 OK in 2666ms (Views: 2503.1ms | ActiveRecord: 143.0ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:32:57 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (3.3ms) Completed 200 OK in 80ms (Views: 46.9ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:35:37 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (4.7ms) Completed 200 OK in 47ms (Views: 38.6ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:35:53 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (5.6ms) Completed 200 OK in 53ms (Views: 47.0ms | ActiveRecord: 0.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:35:55 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (2.8ms) Completed 200 OK in 23ms (Views: 19.2ms | ActiveRecord: 0.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:36:49 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.haml within layouts/cavy/sessions (2.8ms) Completed 200 OK in 22ms (Views: 16.9ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:39:41 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.6ms) Completed 200 OK in 125ms (Views: 120.4ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:28 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 19ms (Views: 15.2ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:51 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.4ms) Completed 200 OK in 145ms (Views: 141.6ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:53 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.0ms) Completed 200 OK in 18ms (Views: 14.1ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:53 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 20ms (Views: 15.1ms | ActiveRecord: 0.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:54 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.7ms) Completed 200 OK in 20ms (Views: 16.4ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:55 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.2ms) Completed 200 OK in 22ms (Views: 18.2ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:55 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 20ms (Views: 15.9ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:40:56 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 0.2ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:42:13 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (2.5ms) Completed 200 OK in 142ms (Views: 126.9ms | ActiveRecord: 0.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:45:57 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.7ms) Completed 200 OK in 103ms (Views: 19.7ms | ActiveRecord: 4.8ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:45:59 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 20ms (Views: 14.7ms | ActiveRecord: 0.9ms) Started GET "/" for 127.0.0.1 at 2017-01-29 21:46:02 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.9ms) Started GET "/en/" for 127.0.0.1 at 2017-01-29 21:46:02 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (3.3ms) Completed 200 OK in 107ms (Views: 87.6ms | ActiveRecord: 4.0ms) Started GET "/en/" for 127.0.0.1 at 2017-01-29 21:46:17 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.9ms) Completed 200 OK in 346ms (Views: 196.8ms | ActiveRecord: 2.0ms) Started GET "/en/" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:30 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:46:31 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-29 21:47:13 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (44.8ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en Filter chain halted as :check_if_first_time rendered or redirected Completed 302 Found in 151ms (ActiveRecord: 45.1ms) Started GET "/en" for 127.0.0.1 at 2017-01-29 21:47:13 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.7ms) Completed 200 OK in 58ms (Views: 45.7ms | ActiveRecord: 0.7ms) Started GET "/en" for 127.0.0.1 at 2017-01-29 21:48:06 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.5ms) Completed 200 OK in 21ms (Views: 15.8ms | ActiveRecord: 1.0ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:48:11 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.3ms) Completed 200 OK in 34ms (Views: 16.5ms | ActiveRecord: 1.0ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:49:44 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.2ms) Completed 200 OK in 135ms (Views: 130.1ms | ActiveRecord: 0.5ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:49:46 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.2ms) Completed 200 OK in 31ms (Views: 26.0ms | ActiveRecord: 0.5ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:50:24 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.0ms) Completed 200 OK in 73ms (Views: 69.4ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:51:41 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.4ms) Completed 200 OK in 290ms (Views: 256.1ms | ActiveRecord: 0.5ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:51:42 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.5ms) Completed 200 OK in 21ms (Views: 17.1ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:53:34 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.9ms) Completed 200 OK in 76ms (Views: 70.3ms | ActiveRecord: 0.5ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:53:35 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.8ms) Completed 200 OK in 21ms (Views: 17.4ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:53:55 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 19ms (Views: 15.1ms | ActiveRecord: 0.4ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:53:57 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.2ms) Completed 200 OK in 23ms (Views: 18.9ms | ActiveRecord: 0.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:54:20 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.3ms) Completed 200 OK in 42ms (Views: 38.3ms | ActiveRecord: 0.3ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:55:07 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.3ms) Completed 200 OK in 21ms (Views: 16.7ms | ActiveRecord: 0.3ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:55:30 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PJBenLkxIeNuC3OZRzFcVMpWZIVuJ5WiXJIIyzJ3M5xELFTW8OwL9VAhSSsU8j2mT68vZnU9rKgfl5vPrHS3uQ==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.0ms) Completed 200 OK in 126ms (Views: 17.7ms | ActiveRecord: 0.6ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:56:59 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PJBenLkxIeNuC3OZRzFcVMpWZIVuJ5WiXJIIyzJ3M5xELFTW8OwL9VAhSSsU8j2mT68vZnU9rKgfl5vPrHS3uQ==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.0ms) Completed 200 OK in 86ms (Views: 15.0ms | ActiveRecord: 0.8ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:58:24 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PJBenLkxIeNuC3OZRzFcVMpWZIVuJ5WiXJIIyzJ3M5xELFTW8OwL9VAhSSsU8j2mT68vZnU9rKgfl5vPrHS3uQ==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.1ms) Completed 200 OK in 157ms (Views: 91.3ms | ActiveRecord: 0.8ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-29 21:58:37 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Asl8E0MKbqWd/I5SvcDCvONHAMltQIWbCpnL5QhwR5Z6dXZZCtdEs6PWtODuA6NOZr5LKnZavJFJnFjhlnPDsw==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Redirected to http://localhost:3000/en Completed 302 Found in 72ms (ActiveRecord: 0.9ms) Started GET "/en" for 127.0.0.1 at 2017-01-29 21:58:37 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.9ms) Completed 200 OK in 74ms (Views: 68.6ms | ActiveRecord: 0.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 21:58:45 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.4ms) Completed 200 OK in 136ms (Views: 97.7ms | ActiveRecord: 2.6ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 21:58:56 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.9ms) Completed 200 OK in 28ms (Views: 23.5ms | ActiveRecord: 0.9ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 21:58:57 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (4.3ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.1ms) Completed 200 OK in 47ms (Views: 26.0ms | ActiveRecord: 1.2ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 21:58:59 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.1ms) Completed 200 OK in 84ms (Views: 29.4ms | ActiveRecord: 4.6ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 21:59:01 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (17.5ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.3ms) Completed 200 OK in 60ms (Views: 33.3ms | ActiveRecord: 6.7ms) Started GET "/" for 127.0.0.1 at 2017-01-29 22:09:49 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.4ms) Started GET "/en/" for 127.0.0.1 at 2017-01-29 22:09:49 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.7ms) Completed 200 OK in 126ms (Views: 115.5ms | ActiveRecord: 1.1ms) Started GET "/en/" for 127.0.0.1 at 2017-01-29 22:10:19 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.8ms) Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (3.2ms) Completed 200 OK in 43ms (Views: 34.4ms | ActiveRecord: 2.0ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:10:22 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.2ms) Completed 200 OK in 133ms (Views: 88.2ms | ActiveRecord: 0.9ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:11:00 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Completed 200 OK in 32ms (Views: 27.6ms | ActiveRecord: 0.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:12:21 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.8ms) Completed 200 OK in 128ms (Views: 123.7ms | ActiveRecord: 0.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:12:55 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.6ms) Completed 200 OK in 105ms (Views: 100.1ms | ActiveRecord: 0.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:13:28 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (4.5ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.2ms) Completed 200 OK in 352ms (Views: 27.1ms | ActiveRecord: 0.8ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 22:13:31 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.6ms) Completed 200 OK in 36ms (Views: 25.5ms | ActiveRecord: 1.4ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-29 22:13:33 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.0ms) Completed 200 OK in 45ms (Views: 27.1ms | ActiveRecord: 1.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:13:35 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.7ms) Completed 200 OK in 73ms (Views: 37.5ms | ActiveRecord: 1.4ms) Started GET "/de/admin/pages" for 127.0.0.1 at 2017-01-29 22:14:17 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"de"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.1ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.0ms) Completed 200 OK in 33ms (Views: 27.0ms | ActiveRecord: 1.9ms) Started GET "/wk/admin/pages" for 127.0.0.1 at 2017-01-29 22:14:18 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"wk"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.3ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.1ms) Completed 200 OK in 32ms (Views: 26.9ms | ActiveRecord: 1.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:14:20 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.5ms) Completed 200 OK in 31ms (Views: 25.8ms | ActiveRecord: 1.9ms) Started GET "/de/admin/pages" for 127.0.0.1 at 2017-01-29 22:14:21 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"de"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.3ms) Completed 200 OK in 34ms (Views: 27.6ms | ActiveRecord: 1.6ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:14:24 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.2ms) Completed 200 OK in 29ms (Views: 24.9ms | ActiveRecord: 1.3ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-29 22:14:28 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.7ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.5ms) Completed 200 OK in 31ms (Views: 26.4ms | ActiveRecord: 1.0ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:14:33 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.8ms) Completed 200 OK in 26ms (Views: 21.1ms | ActiveRecord: 0.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:14:37 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.9ms) Completed 200 OK in 37ms (Views: 31.5ms | ActiveRecord: 1.5ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-29 22:14:52 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (2.0ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.4ms) Completed 200 OK in 55ms (Views: 50.0ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:14:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (33.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (136.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.3ms) Completed 200 OK in 209ms (Views: 158.6ms | ActiveRecord: 34.3ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:15:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (3.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Completed 200 OK in 76ms (Views: 69.2ms | ActiveRecord: 1.2ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:18:41 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (17.7ms) Completed 200 OK in 185ms (Views: 165.6ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:20:41 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (40.5ms) Completed 200 OK in 360ms (Views: 333.0ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:20:43 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.1ms) Completed 200 OK in 34ms (Views: 28.5ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:20:44 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (5.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.5ms) Completed 200 OK in 41ms (Views: 35.5ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:20:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (3.7ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.2ms) Completed 200 OK in 33ms (Views: 26.7ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:21:17 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.1ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.6ms) Completed 200 OK in 35ms (Views: 29.0ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:27:40 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.2ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (17.8ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 151ms (Views: 122.1ms | ActiveRecord: 1.3ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:28:30 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.2ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 93ms (Views: 86.9ms | ActiveRecord: 1.2ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:29:24 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (3.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 62ms (Views: 56.0ms | ActiveRecord: 1.1ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:30:27 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (3.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.8ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 62ms (Views: 55.5ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:34:16 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (18.0ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 216ms (Views: 189.5ms | ActiveRecord: 0.9ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:34:22 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.2ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 63ms (Views: 29.2ms | ActiveRecord: 0.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:34:23 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (7.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.4ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 156ms (Views: 49.4ms | ActiveRecord: 0.8ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 22:34:25 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (7.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.8ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 67ms (Views: 37.9ms | ActiveRecord: 1.4ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-29 22:34:26 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (8.0ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (21.8ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 122ms (Views: 55.7ms | ActiveRecord: 1.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:34:28 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.1ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Completed 200 OK in 52ms (Views: 28.3ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:36:37 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (21.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 128ms (Views: 105.9ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:37:31 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.7ms) Completed 200 OK in 159ms (Views: 136.3ms | ActiveRecord: 1.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:37:49 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (3.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.8ms) Completed 200 OK in 65ms (Views: 26.7ms | ActiveRecord: 0.7ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 22:37:50 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (1.1ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 72ms (Views: 29.1ms | ActiveRecord: 1.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:38:17 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 33ms (Views: 27.6ms | ActiveRecord: 1.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:41:47 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 413ms (Views: 384.3ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:44:30 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.5ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 672ms (Views: 395.2ms | ActiveRecord: 1.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:44:53 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.8ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 375ms (Views: 352.5ms | ActiveRecord: 2.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:46:22 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.9ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (7.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 395ms (Views: 360.8ms | ActiveRecord: 2.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:47:22 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 147ms (Views: 142.4ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:47:36 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 46ms (Views: 39.5ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:48:07 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 69ms (Views: 63.9ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:48:25 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.5ms) Completed 200 OK in 87ms (Views: 79.8ms | ActiveRecord: 1.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:48:35 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 96ms (Views: 88.6ms | ActiveRecord: 1.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:49:26 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (5.0ms) Completed 200 OK in 90ms (Views: 83.1ms | ActiveRecord: 1.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:51:43 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 465ms (Views: 441.9ms | ActiveRecord: 1.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:51:45 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.7ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 34ms (Views: 28.6ms | ActiveRecord: 1.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:53:22 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 517ms (Views: 495.5ms | ActiveRecord: 1.6ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:55:03 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (16.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.2ms) Completed 200 OK in 170ms (Views: 144.7ms | ActiveRecord: 0.8ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:55:06 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 72ms (Views: 31.8ms | ActiveRecord: 1.0ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 22:55:07 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (1.5ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.5ms) Completed 200 OK in 86ms (Views: 36.8ms | ActiveRecord: 2.6ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-29 22:55:08 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.7ms) Completed 200 OK in 90ms (Views: 42.2ms | ActiveRecord: 1.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:55:11 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 82ms (Views: 33.5ms | ActiveRecord: 2.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:55:50 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 33ms (Views: 27.7ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:56:12 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.3ms) Completed 200 OK in 48ms (Views: 41.6ms | ActiveRecord: 1.5ms) Started GET "/en/admin/new_page" for 127.0.0.1 at 2017-01-29 22:56:13 +0100 Processing by Cavy::AdminPagesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 67ms (Views: 29.3ms | ActiveRecord: 0.7ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-29 22:56:18 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 35ms (Views: 29.9ms | ActiveRecord: 1.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 22:56:19 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 36ms (Views: 30.4ms | ActiveRecord: 1.2ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-29 22:56:20 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.8ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.8ms) Completed 200 OK in 92ms (Views: 86.6ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-29 22:56:23 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 48ms (Views: 29.5ms | ActiveRecord: 1.2ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-29 22:56:43 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 33ms (Views: 28.6ms | ActiveRecord: 0.7ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 22:56:46 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 34ms (Views: 28.3ms | ActiveRecord: 1.2ms) Started GET "/en/admin/item_group/new" for 127.0.0.1 at 2017-01-29 22:56:47 +0100 Processing by Cavy::ItemGroupsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/new.html.haml within layouts/cavy/admin_layout (26.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 105ms (Views: 54.1ms | ActiveRecord: 5.3ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:56:51 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 32ms (Views: 27.4ms | ActiveRecord: 0.8ms) Started GET "/en/admin/sections/new" for 127.0.0.1 at 2017-01-29 22:56:53 +0100 Processing by Cavy::ItemSectionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.haml within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.5ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.haml (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.haml within layouts/cavy/admin_layout (23.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.1ms) Completed 200 OK in 94ms (Views: 46.8ms | ActiveRecord: 5.9ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:57:53 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 33ms (Views: 28.8ms | ActiveRecord: 0.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 22:58:20 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.haml within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 59ms (Views: 53.5ms | ActiveRecord: 0.7ms) Started GET "/en/admin/sections/new" for 127.0.0.1 at 2017-01-29 22:58:23 +0100 Processing by Cavy::ItemSectionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.haml within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.haml (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.haml within layouts/cavy/admin_layout (8.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 39ms (Views: 33.9ms | ActiveRecord: 1.1ms) Started GET "/en/admin/sections/new" for 127.0.0.1 at 2017-01-29 22:59:35 +0100 Processing by Cavy::ItemSectionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.9ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.6ms) Completed 200 OK in 108ms (Views: 103.0ms | ActiveRecord: 1.0ms) Started GET "/en/admin/sections/new" for 127.0.0.1 at 2017-01-29 22:59:49 +0100 Processing by Cavy::ItemSectionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.1ms) Completed 200 OK in 44ms (Views: 38.9ms | ActiveRecord: 1.1ms) Started GET "/en/admin/sections/new" for 127.0.0.1 at 2017-01-29 23:02:17 +0100 Processing by Cavy::ItemSectionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout (15.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (15.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 140ms (Views: 122.5ms | ActiveRecord: 1.0ms) Started POST "/en/admin/sections" for 127.0.0.1 at 2017-01-29 23:02:24 +0100 Processing by Cavy::ItemSectionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WRd1+Smpxn1zOdmbQfttCgQplAKrfxTFG68pf4Uchgohq3+zYHTsa00T4ykSOAz4gdDf4bBlLc9Yqrp7Gx8CLw==", "item_section"=>{"title"=>"Menu"}, "commit"=>"Save", "locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (42.0ms) BEGIN Cavy::ItemSection Exists (0.6ms) SELECT 1 AS one FROM "cavy_item_sections" WHERE "cavy_item_sections"."title" = $1 LIMIT $2 [["title", "Menu"], ["LIMIT", 1]] SQL (151.5ms) INSERT INTO "cavy_item_sections" ("title") VALUES ($1) RETURNING "id" [["title", "Menu"]]  (14.3ms) COMMIT Redirected to http://localhost:3000/en/admin/section/1 Completed 302 Found in 280ms (ActiveRecord: 208.7ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:02:24 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", nil], ["LIMIT", 1]] Completed 500 in 7ms (ActiveRecord: 0.8ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::ItemGroup with 'id'=: activerecord (5.0.1) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/item_sections_controller.rb:14:in `show' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/c51de31d33de64a0/variables" for 127.0.0.1 at 2017-01-29 23:02:24 +0100 Started POST "/__better_errors/c51de31d33de64a0/variables" for 127.0.0.1 at 2017-01-29 23:02:34 +0100 Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:04:30 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", nil], ["LIMIT", 1]] Completed 500 in 29159ms (ActiveRecord: 13.3ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::ItemGroup with 'id'=: activerecord (5.0.1) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/item_sections_controller.rb:14:in `show' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:06:26 +0100 SyntaxError - syntax error, unexpected ( arg, expecting ':' .nil? ? Cavy::ItemGroup.find (@item_section.item_groups) : [ ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/item_sections_controller.rb:14: syntax error, unexpected ':', expecting keyword_end (@item_section.item_groups) : [] ^: /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/item_sections_controller.rb:14:in `' activesupport (5.0.1) lib/active_support/dependencies.rb:477:in `block in load_file' activesupport (5.0.1) lib/active_support/dependencies.rb:662:in `new_constants_in' activesupport (5.0.1) lib/active_support/dependencies.rb:476:in `load_file' activesupport (5.0.1) lib/active_support/dependencies.rb:375:in `block in require_or_load' activesupport (5.0.1) lib/active_support/dependencies.rb:37:in `block in load_interlock' activesupport (5.0.1) lib/active_support/dependencies/interlock.rb:12:in `block in loading' activesupport (5.0.1) lib/active_support/concurrency/share_lock.rb:150:in `exclusive' activesupport (5.0.1) lib/active_support/dependencies/interlock.rb:11:in `loading' activesupport (5.0.1) lib/active_support/dependencies.rb:37:in `load_interlock' activesupport (5.0.1) lib/active_support/dependencies.rb:358:in `require_or_load' activesupport (5.0.1) lib/active_support/dependencies.rb:511:in `load_missing_constant' activesupport (5.0.1) lib/active_support/dependencies.rb:203:in `const_missing' activesupport (5.0.1) lib/active_support/inflector/methods.rb:270:in `block in constantize' activesupport (5.0.1) lib/active_support/inflector/methods.rb:266:in `constantize' activesupport (5.0.1) lib/active_support/dependencies.rb:583:in `get' activesupport (5.0.1) lib/active_support/dependencies.rb:614:in `constantize' actionpack (5.0.1) lib/action_dispatch/http/request.rb:81:in `controller_class' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:44:in `controller' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:30:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/f7ed77e0b9fad5a9/variables" for 127.0.0.1 at 2017-01-29 23:06:28 +0100 Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:07:18 +0100 SyntaxError - syntax error, unexpected end-of-input, expecting keyword_end: /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/item_sections_controller.rb:57:in `' activesupport (5.0.1) lib/active_support/dependencies.rb:477:in `block in load_file' activesupport (5.0.1) lib/active_support/dependencies.rb:662:in `new_constants_in' activesupport (5.0.1) lib/active_support/dependencies.rb:476:in `load_file' activesupport (5.0.1) lib/active_support/dependencies.rb:375:in `block in require_or_load' activesupport (5.0.1) lib/active_support/dependencies.rb:37:in `block in load_interlock' activesupport (5.0.1) lib/active_support/dependencies/interlock.rb:12:in `block in loading' activesupport (5.0.1) lib/active_support/concurrency/share_lock.rb:150:in `exclusive' activesupport (5.0.1) lib/active_support/dependencies/interlock.rb:11:in `loading' activesupport (5.0.1) lib/active_support/dependencies.rb:37:in `load_interlock' activesupport (5.0.1) lib/active_support/dependencies.rb:358:in `require_or_load' activesupport (5.0.1) lib/active_support/dependencies.rb:511:in `load_missing_constant' activesupport (5.0.1) lib/active_support/dependencies.rb:203:in `const_missing' activesupport (5.0.1) lib/active_support/inflector/methods.rb:270:in `block in constantize' activesupport (5.0.1) lib/active_support/inflector/methods.rb:266:in `constantize' activesupport (5.0.1) lib/active_support/dependencies.rb:583:in `get' activesupport (5.0.1) lib/active_support/dependencies.rb:614:in `constantize' actionpack (5.0.1) lib/action_dispatch/http/request.rb:81:in `controller_class' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:44:in `controller' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:30:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/99df88fafe52e991/variables" for 127.0.0.1 at 2017-01-29 23:07:19 +0100 Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:07:36 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (21.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (26.4ms) Completed 200 OK in 1255ms (Views: 975.8ms | ActiveRecord: 10.3ms) Started GET "/en/admin/sections/edit/1" for 127.0.0.1 at 2017-01-29 23:07:42 +0100 Processing by Cavy::ItemSectionsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/edit.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.7ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (213.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/edit.html.erb within layouts/cavy/admin_layout (255.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.8ms) Completed 200 OK in 341ms (Views: 322.4ms | ActiveRecord: 3.2ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 23:07:46 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (7.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.8ms) Completed 200 OK in 105ms (Views: 78.5ms | ActiveRecord: 1.0ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 23:07:49 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (15.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 112ms (Views: 86.9ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group/new" for 127.0.0.1 at 2017-01-29 23:07:51 +0100 Processing by Cavy::ItemGroupsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (17.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/new.html.haml within layouts/cavy/admin_layout (38.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 145ms (Views: 108.1ms | ActiveRecord: 2.5ms) Started POST "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 23:08:07 +0100 Processing by Cavy::ItemGroupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"MXALtg7uW+6lViowtaINjdAaTysJWDkGsXIkRZFg3ipJzAH8RzNx+Jt8EILmYWx/VeMEyBJCAAzyd7dBD2NaDw==", "item_group"=>{"title"=>"Menu", "param_string"=>"name, price"}, "commit"=>"Create", "locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (0.4ms) BEGIN SQL (80.6ms) INSERT INTO "cavy_item_groups" ("title", "params") VALUES ($1, $2) RETURNING "id" [["title", "Menu"], ["params", "{name,price}"]]  (45.4ms) COMMIT Redirected to http://localhost:3000/en/admin/item_group/1 Completed 302 Found in 154ms (ActiveRecord: 127.0ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:08:07 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (12.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (30.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 179ms (Views: 88.0ms | ActiveRecord: 15.2ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 23:08:09 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (23.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 140ms (Views: 94.0ms | ActiveRecord: 1.8ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 23:08:13 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (7.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.3ms) Completed 200 OK in 144ms (Views: 84.0ms | ActiveRecord: 1.0ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:08:14 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 124ms (Views: 81.9ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:08:18 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 90ms (Views: 73.7ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:08:19 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 97ms (Views: 79.4ms | ActiveRecord: 1.3ms) Started GET "/en/admin/sections/edit/1" for 127.0.0.1 at 2017-01-29 23:08:20 +0100 Processing by Cavy::ItemSectionsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/edit.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (12.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/edit.html.erb within layouts/cavy/admin_layout (25.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 173ms (Views: 103.1ms | ActiveRecord: 1.7ms) Started PATCH "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:08:24 +0100 Processing by Cavy::ItemSectionsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"q8E73XKrUa0U4fqBGznd2lMAX2xNc3rh8si3uZBR9QPTfTGXO3Z7uyrLwDNI+rwo1vkUj1ZpQ+uxzSS9DlJxJg==", "item_section"=>{"title"=>"Menu", "item_groups"=>["1"]}, "commit"=>"Save", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameter: item_groups  (0.3ms) BEGIN Cavy::ItemSection Exists (0.5ms) SELECT 1 AS one FROM "cavy_item_sections" WHERE "cavy_item_sections"."title" = $1 AND ("cavy_item_sections"."id" != $2) LIMIT $3 [["title", "Menu"], ["id", 1], ["LIMIT", 1]] SQL (35.2ms) UPDATE "cavy_item_sections" SET "item_groups" = $1 WHERE "cavy_item_sections"."id" = $2 [["item_groups", "{1}"], ["id", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/section/1 Completed 302 Found in 156ms (ActiveRecord: 37.4ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-29 23:08:24 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.6ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 97ms (Views: 74.0ms | ActiveRecord: 1.8ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 23:08:32 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (7.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.7ms) CACHE (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.2ms) Completed 200 OK in 107ms (Views: 78.5ms | ActiveRecord: 1.0ms) Started GET "/en/admin/sections/new" for 127.0.0.1 at 2017-01-29 23:08:33 +0100 Processing by Cavy::ItemSectionsController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.5ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (15.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/new.html.erb within layouts/cavy/admin_layout (27.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.3ms) Completed 200 OK in 139ms (Views: 108.4ms | ActiveRecord: 1.4ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-29 23:08:57 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (8.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.8ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 94ms (Views: 81.9ms | ActiveRecord: 0.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-29 23:08:59 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (56.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (97.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 247ms (Views: 115.9ms | ActiveRecord: 61.0ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-29 23:09:01 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.5ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (20.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.7ms) Completed 200 OK in 155ms (Views: 88.0ms | ActiveRecord: 1.8ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:09:05 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (17.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 115ms (Views: 86.8ms | ActiveRecord: 1.7ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:09:53 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (18.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.2ms) Completed 200 OK in 111ms (Views: 95.5ms | ActiveRecord: 1.9ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:10:04 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (16.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.8ms) Completed 200 OK in 131ms (Views: 112.9ms | ActiveRecord: 1.9ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:10:15 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.7ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (54.7ms) Completed 500 in 86ms (ActiveRecord: 1.1ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) NameError - uninitialized constant ActionView::CompiledTemplates::Items: activesupport (5.0.1) lib/active_support/dependencies.rb:550:in `load_missing_constant' activesupport (5.0.1) lib/active_support/dependencies.rb:203:in `const_missing' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml:2:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_item_groups_show_html_haml__1039004405381909655_70341695770880' actionview (5.0.1) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:354:in `instrument' actionview (5.0.1) lib/action_view/template.rb:157:in `render' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/240ea6ef365b6f21/variables" for 127.0.0.1 at 2017-01-29 23:10:16 +0100 Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:10:37 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (16.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 118ms (Views: 99.7ms | ActiveRecord: 1.8ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-29 23:10:45 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (15.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.8ms) Completed 200 OK in 136ms (Views: 117.6ms | ActiveRecord: 1.8ms) Started GET "/" for 127.0.0.1 at 2017-01-31 09:13:49 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 928ms (ActiveRecord: 191.6ms) Started GET "/en/" for 127.0.0.1 at 2017-01-31 09:13:52 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (24.0ms) Cavy::Page Load (150.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (176.9ms) Completed 200 OK in 798ms (Views: 612.4ms | ActiveRecord: 154.3ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-31 09:13:54 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (26.1ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (41.7ms) Completed 200 OK in 180ms (Views: 152.1ms | ActiveRecord: 3.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:13:56 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 52ms (Views: 31.1ms | ActiveRecord: 1.7ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-31 09:13:59 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (6.2ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (3.3ms) Completed 200 OK in 45ms (Views: 37.1ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:14:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (122.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 194ms (Views: 168.1ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:17:01 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (10.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.1ms) Completed 200 OK in 58ms (Views: 49.0ms | ActiveRecord: 1.1ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:18:03 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.9ms) Completed 200 OK in 67ms (Views: 59.4ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:19:17 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (4.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.5ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.3ms) Completed 200 OK in 75ms (Views: 61.2ms | ActiveRecord: 6.2ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:19:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.7ms) Completed 200 OK in 58ms (Views: 48.4ms | ActiveRecord: 1.1ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:19:44 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 46ms (Views: 26.0ms | ActiveRecord: 0.7ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:19:48 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.8ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 699ms (Views: 27.2ms | ActiveRecord: 4.5ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:19:51 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 54ms (Views: 35.1ms | ActiveRecord: 1.2ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:21:01 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.0ms) Completed 200 OK in 37ms (Views: 33.0ms | ActiveRecord: 1.0ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:21:05 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 31ms (Views: 27.4ms | ActiveRecord: 0.6ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:21:07 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 33ms (Views: 25.0ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:21:13 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 32ms (Views: 27.7ms | ActiveRecord: 1.3ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:21:16 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 43ms (Views: 38.8ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:21:38 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 31ms (Views: 26.4ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:21:45 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.3ms) Cavy::ItemSection Load (1.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.7ms) Completed 200 OK in 45ms (Views: 39.1ms | ActiveRecord: 1.7ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:22:41 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 32ms (Views: 26.9ms | ActiveRecord: 0.8ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:22:54 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.9ms) Completed 200 OK in 48ms (Views: 42.2ms | ActiveRecord: 0.8ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:23:09 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.6ms) Completed 200 OK in 52ms (Views: 42.5ms | ActiveRecord: 1.3ms) Started POST "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:23:16 +0100 Processing by Cavy::AdminPageDataController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FJYjKQu78+ml3dMLlo1qNZEWgmp9gARyRrFhkbV9IqtsKiljQmbZ/5v36bnFTgvHFO/JiWaaPXgFtPKVK36mjg==", "page"=>{"key"=>"Foo", "value"=>"bar"}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]] SQL (0.5ms) UPDATE "cavy_pages" SET "data" = $1 WHERE "cavy_pages"."id" = $2 [["data", "\"Foo\"=>\"bar\""], ["id", 1]]  (22.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 77ms (ActiveRecord: 23.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:23:16 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 48ms (Views: 23.7ms | ActiveRecord: 0.8ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:24:27 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.1ms) Completed 200 OK in 68ms (Views: 33.2ms | ActiveRecord: 7.4ms) Started POST "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:24:30 +0100 Processing by Cavy::AdminPageDataController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZOnkP0afTEOx0rRsJrMY9k322QafixoxIDrdmlmR/BocVe51D0JmVY/4jt51cHkEyA+S5YSRIztjP06ex5J4Pw==", "page"=>{"key"=>"bar", "value"=>"foo"}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]] SQL (48.7ms) UPDATE "cavy_pages" SET "data" = $1 WHERE "cavy_pages"."id" = $2 [["data", "\"Foo\"=>\"bar\", \"bar\"=>\"foo\""], ["id", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 61ms (ActiveRecord: 50.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:24:30 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 30ms (Views: 24.4ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:24:52 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 30ms (Views: 24.1ms | ActiveRecord: 0.8ms) Started GET "/en/edit/page" for 127.0.0.1 at 2017-01-31 09:24:55 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"page"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "page"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (1.6ms) Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (2.8ms) Completed 200 OK in 26ms (Views: 21.2ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:24:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.8ms) Completed 200 OK in 34ms (Views: 28.2ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:26:07 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.7ms) Completed 200 OK in 71ms (Views: 34.7ms | ActiveRecord: 8.5ms) Started POST "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:26:11 +0100 Processing by Cavy::AdminPageDataController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jpv65KOhZHMnZ7UvgOwaB/TlhSMUcVn3yzHCSaR8wGr2J/Cu6nxOZRlNj53TL3v1cRzOwA9rYP2INFFNOn9ETw==", "page"=>{"key"=>"foo2", "value"=>"bar2"}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]] SQL (0.4ms) UPDATE "cavy_pages" SET "data" = $1 WHERE "cavy_pages"."id" = $2 [["data", "\"Foo\"=>\"bar\", \"bar\"=>\"foo\", \"foo2\"=>\"bar2\""], ["id", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 12ms (ActiveRecord: 2.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:26:11 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 30ms (Views: 24.9ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:26:15 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 29ms (Views: 24.1ms | ActiveRecord: 0.8ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:26:31 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.3ms) Completed 200 OK in 33ms (Views: 27.7ms | ActiveRecord: 1.0ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:26:33 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"kWp93EGyWCZJddJo23qut2SFVN2ke1BLp97i+24dBqzp1neWCG9yMHdf6NqIuc9F4XwfPr9haUHk23H/8B6CiQ==", "page"=>{"tag_string"=>"", "description"=>"", "render"=>"page", "route"=>"page", "title"=>"Home", "data"=>{"Foo"=>"bar", "bar"=>"foo", "foo2"=>"bar2"}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.1ms) BEGIN Cavy::Page Exists (0.3ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 9ms (ActiveRecord: 1.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:26:33 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 32ms (Views: 24.7ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:27:01 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (13.3ms) Completed 200 OK in 87ms (Views: 39.5ms | ActiveRecord: 7.6ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:27:03 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"or5Ae643h3cgCKzWcKEaoguZvv5fVHZ1tDVZYYF0wQbaAkox5+qtYR4ilmQjYntQjmD1HUROT3/3MMplH3dFIw==", "page"=>{"tag_string"=>"", "description"=>"", "render"=>"page", "route"=>"page", "title"=>"Home", "data"=>{"Foo"=>"bar", "bar"=>"foo", "foo2"=>"bar2"}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.6ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 14ms (ActiveRecord: 2.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:27:03 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 30ms (Views: 25.2ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:28:34 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.6ms) Completed 200 OK in 118ms (Views: 99.7ms | ActiveRecord: 0.9ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:28:36 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vzqtCnYUEtfxDbJSlnNLucDVT+cXqhXCopD4G2LRQH3HhqdAP8k4wc8niODFsCpLRSwEBAywLMjhlWsf/NLEWA==", "page"=>{"tag_string"=>"", "description"=>"", "render"=>"page", "route"=>"page", "title"=>"Home", "data"=>{"Foo"=>"bar", "bar"=>"foo", "foo2"=>"bar2"}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 11ms (ActiveRecord: 1.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:28:36 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 42ms (Views: 24.4ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:28:48 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 31ms (Views: 25.6ms | ActiveRecord: 0.9ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:28:49 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 36ms (Views: 30.9ms | ActiveRecord: 0.8ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:28:51 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UIjFAGaGTNMLkgzYtbZBWR9bZR49cVHQTqpvy0MdjE4oNM9KL1tmxTW4NmrmdSCrmqIu/SZraNoNr/zP3R4Iaw==", "page"=>{"tag_string"=>"", "description"=>"", "render"=>"page", "route"=>"page", "title"=>"Home", "data"=>{"Foo"=>"bar", "bar"=>"foo", "foo2"=>"bar2"}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN Cavy::Page Exists (0.3ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "page"], ["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 11ms (ActiveRecord: 1.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-01-31 09:28:51 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.0ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 33ms (Views: 28.2ms | ActiveRecord: 1.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:29:02 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 80ms (Views: 36.5ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:29:04 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 66ms (Views: 25.8ms | ActiveRecord: 3.5ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:30:06 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (18.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.8ms) Completed 200 OK in 63ms (Views: 44.7ms | ActiveRecord: 1.0ms) Started PATCH "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:30:13 +0100 Processing by Cavy::ItemGroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"QR67vE1foiHI/iERjfToPqOhCv1Px+VKgSHjrSshmvw5orH2BIKIN/bUG6PeN4nMJlhBHlTd3EDCJHCptSIe2Q==", "item_group"=>{"title"=>"Specials", "param_string"=>"name,price"}, "commit"=>"Create", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.1ms) BEGIN SQL (0.3ms) UPDATE "cavy_item_groups" SET "title" = $1 WHERE "cavy_item_groups"."id" = $2 [["title", "Specials"], ["id", 1]]  (16.0ms) COMMIT Redirected to http://localhost:3000/en/admin/item_group/1 Completed 302 Found in 25ms (ActiveRecord: 16.9ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:30:13 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 146ms (Views: 34.5ms | ActiveRecord: 2.8ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:30:18 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 51ms (Views: 26.7ms | ActiveRecord: 0.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:30:29 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 32ms (Views: 27.4ms | ActiveRecord: 0.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:30:31 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 31ms (Views: 26.5ms | ActiveRecord: 0.6ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:30:42 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 33ms (Views: 25.8ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:31:09 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.5ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 46ms (Views: 25.5ms | ActiveRecord: 1.8ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:31:34 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 31ms (Views: 24.4ms | ActiveRecord: 1.2ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:32:46 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 33ms (Views: 26.1ms | ActiveRecord: 1.1ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:33:00 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.5ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.8ms) Completed 200 OK in 31ms (Views: 27.2ms | ActiveRecord: 0.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:33:14 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 29ms (Views: 25.0ms | ActiveRecord: 0.8ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:33:19 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.8ms) Completed 200 OK in 31ms (Views: 27.1ms | ActiveRecord: 0.6ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:33:20 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 59ms (Views: 28.7ms | ActiveRecord: 1.2ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:33:51 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 33ms (Views: 27.8ms | ActiveRecord: 1.3ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:34:29 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (3.2ms) Completed 500 in 10ms (ActiveRecord: 0.2ms) SyntaxError - syntax error, unexpected ':', expecting ')' class: 'button small alert' :method => :delete, :data => { ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml:24: syntax error, unexpected ',', expecting ')' :confirm => 'Are you sure?' }, id: "delete-#{item_group.id}" ^: /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml:24:in `' actionview (5.0.1) lib/action_view/template.rb:310:in `compile' actionview (5.0.1) lib/action_view/template.rb:259:in `block (2 levels) in compile!' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:356:in `instrument' actionview (5.0.1) lib/action_view/template.rb:258:in `block in compile!' actionview (5.0.1) lib/action_view/template.rb:246:in `compile!' actionview (5.0.1) lib/action_view/template.rb:158:in `block in render' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:354:in `instrument' actionview (5.0.1) lib/action_view/template.rb:157:in `render' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/48dceeec58799f12/variables" for 127.0.0.1 at 2017-01-31 09:34:30 +0100 Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:34:43 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.0ms) Completed 200 OK in 38ms (Views: 32.8ms | ActiveRecord: 1.3ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:34:47 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (7.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 38ms (Views: 32.0ms | ActiveRecord: 0.9ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:35:17 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (3.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (6.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 37ms (Views: 30.5ms | ActiveRecord: 1.0ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:35:45 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (2.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (10.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.7ms) Cavy::ItemSection Load (1.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.6ms) Completed 200 OK in 66ms (Views: 52.6ms | ActiveRecord: 4.8ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:36:03 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 37ms (Views: 31.5ms | ActiveRecord: 0.9ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:36:06 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (7.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 43ms (Views: 37.0ms | ActiveRecord: 1.0ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:36:07 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (6.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 34ms (Views: 28.4ms | ActiveRecord: 0.9ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:36:37 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 35ms (Views: 28.6ms | ActiveRecord: 0.8ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:37:37 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (7.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 36ms (Views: 30.2ms | ActiveRecord: 0.8ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:39:40 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.5ms) Completed 200 OK in 97ms (Views: 38.7ms | ActiveRecord: 7.7ms) Started PATCH "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:39:41 +0100 Processing by Cavy::ItemGroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nouv8bmtfZQzgpUZpToO9SIaTEE8oJ5er7SaoFa3CGXmN6W78HBXgg2or6v2+W8Hp+MHoie6p1TssQmkyLSMQA==", "item_group"=>{"title"=>"Specials", "param_string"=>"name,price"}, "commit"=>"Update", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/item_group/1 Completed 302 Found in 7ms (ActiveRecord: 0.8ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:39:41 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 42ms (Views: 27.9ms | ActiveRecord: 2.2ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:40:04 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 44ms (Views: 36.3ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:40:34 +0100 Processing by Cavy::ItemsController#new as HTML Parameters: {"locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout (25.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 77ms (Views: 49.9ms | ActiveRecord: 1.9ms) Started GET "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:41:21 +0100 Processing by Cavy::ItemsController#new as HTML Parameters: {"locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout (10.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.0ms) Completed 200 OK in 55ms (Views: 45.4ms | ActiveRecord: 1.0ms) Started GET "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:41:39 +0100 Processing by Cavy::ItemsController#new as HTML Parameters: {"locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout (9.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.1ms) Completed 200 OK in 63ms (Views: 54.4ms | ActiveRecord: 1.0ms) Started GET "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:42:34 +0100 Processing by Cavy::ItemsController#new as HTML Parameters: {"locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 36ms (Views: 29.5ms | ActiveRecord: 0.9ms) Started POST "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:42:50 +0100 Processing by Cavy::ItemsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8tYxDJuHqdlPPaP4wC+MpF1059I1aC/e5ee7Z3i3q+aKajtG0lqDz3EXmUqT7O1W2I2sMS5yFtSm4ihj5rQvww==", "item"=>{"data"=>{"name"=>"Foo", "price"=>"bar"}}, "commit"=>"Save", "locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (59.2ms) INSERT INTO "cavy_items" ("data", "item_group_id") VALUES ($1, $2) RETURNING "id" [["data", "\"name\"=>\"Foo\", \"price\"=>\"bar\", \"type\"=>\"specials\""], ["item_group_id", 1]]  (0.5ms) COMMIT  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/en/admin/item_group/1 Completed 302 Found in 70ms (ActiveRecord: 60.5ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:42:50 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.5ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 43ms (Views: 34.1ms | ActiveRecord: 1.9ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:43:15 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 44ms (Views: 36.8ms | ActiveRecord: 1.9ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:43:25 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 37ms (Views: 30.3ms | ActiveRecord: 1.7ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:43:27 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 35ms (Views: 29.4ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:43:28 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 36ms (Views: 29.0ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:43:46 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 36ms (Views: 30.0ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:44:01 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 36ms (Views: 29.5ms | ActiveRecord: 1.7ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:44:02 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 35ms (Views: 28.7ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:44:19 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.8ms) Completed 200 OK in 53ms (Views: 46.9ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:44:20 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 35ms (Views: 29.1ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:44:20 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (7.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 36ms (Views: 30.0ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:45:11 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.3ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 57ms (Views: 50.0ms | ActiveRecord: 1.8ms) Started GET "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:45:15 +0100 Processing by Cavy::ItemsController#new as HTML Parameters: {"locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.5ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/new.html.haml within layouts/cavy/admin_layout (23.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.4ms) Completed 200 OK in 94ms (Views: 49.1ms | ActiveRecord: 1.8ms) Started POST "/en/admin/item/new/1" for 127.0.0.1 at 2017-01-31 09:45:19 +0100 Processing by Cavy::ItemsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"RjQNArQ/cO33dN90C1MXWoC0JjY7itJLhJ4xAANiJ/Y+iAdI/eJa+8le5cZYkHaoBU1t1SCQ60HHm6IEnWGj0w==", "item"=>{"data"=>{"name"=>"foo2", "price"=>"bar2"}}, "commit"=>"Save", "locale"=>"en", "group_id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (1.3ms) INSERT INTO "cavy_items" ("data", "item_group_id") VALUES ($1, $2) RETURNING "id" [["data", "\"name\"=>\"foo2\", \"price\"=>\"bar2\", \"type\"=>\"specials\""], ["item_group_id", 1]]  (15.4ms) COMMIT  (0.2ms) BEGIN  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/item_group/1 Completed 302 Found in 29ms (ActiveRecord: 18.0ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:45:19 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.5ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (1.1ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (28.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (37.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.9ms) Completed 200 OK in 79ms (Views: 42.2ms | ActiveRecord: 31.7ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:45:40 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 43ms (Views: 29.0ms | ActiveRecord: 1.4ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:45:42 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 65ms (Views: 28.2ms | ActiveRecord: 1.8ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:46:14 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 30ms (Views: 25.5ms | ActiveRecord: 0.6ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:46:26 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.7ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.5ms) Completed 200 OK in 54ms (Views: 34.7ms | ActiveRecord: 2.5ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:46:45 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (7.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 43ms (Views: 37.1ms | ActiveRecord: 1.3ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:46:47 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 33ms (Views: 28.3ms | ActiveRecord: 0.9ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:46:49 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 42ms (Views: 30.0ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:46:49 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 36ms (Views: 30.9ms | ActiveRecord: 1.3ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:46:51 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.2ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 32ms (Views: 27.7ms | ActiveRecord: 0.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:46:51 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.0ms) Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 0.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-31 09:47:00 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 48ms (Views: 24.8ms | ActiveRecord: 0.8ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:47:02 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 50ms (Views: 31.6ms | ActiveRecord: 1.3ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:47:25 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 33ms (Views: 28.3ms | ActiveRecord: 1.1ms) Started GET "/en/users/1" for 127.0.0.1 at 2017-01-31 09:47:32 +0100 Processing by Cavy::UsersController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 67ms (Views: 32.6ms | ActiveRecord: 0.8ms) Started GET "/en/users/1" for 127.0.0.1 at 2017-01-31 09:47:44 +0100 Processing by Cavy::UsersController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.1ms) Completed 200 OK in 38ms (Views: 32.1ms | ActiveRecord: 1.2ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:47:46 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.4ms) Completed 200 OK in 34ms (Views: 29.0ms | ActiveRecord: 1.1ms) Started GET "/en/users/1/edit" for 127.0.0.1 at 2017-01-31 09:47:48 +0100 Processing by Cavy::UsersController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (42.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout (97.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 325ms (Views: 124.9ms | ActiveRecord: 0.8ms) Started GET "/en/users/1/edit" for 127.0.0.1 at 2017-01-31 09:48:13 +0100 Processing by Cavy::UsersController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout (7.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 38ms (Views: 31.3ms | ActiveRecord: 1.1ms) Started GET "/en/users/1/edit" for 127.0.0.1 at 2017-01-31 09:49:49 +0100 Processing by Cavy::UsersController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (8.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout (12.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 48ms (Views: 39.8ms | ActiveRecord: 1.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:49:56 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (17.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 62ms (Views: 37.5ms | ActiveRecord: 6.1ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 09:49:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 76ms (Views: 30.8ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:50:01 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (1.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 58ms (Views: 50.7ms | ActiveRecord: 2.4ms) Started GET "/en/admin/page/data/1" for 127.0.0.1 at 2017-01-31 09:50:30 +0100 Processing by Cavy::AdminPageDataController#new as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/data/new.html.erb within layouts/cavy/admin_layout (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.9ms) Completed 200 OK in 58ms (Views: 52.2ms | ActiveRecord: 1.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:50:32 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.8ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 54ms (Views: 28.5ms | ActiveRecord: 2.5ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:50:34 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 51ms (Views: 26.1ms | ActiveRecord: 1.1ms) Started GET "/en/admin/item_group/edit/1" for 127.0.0.1 at 2017-01-31 09:50:36 +0100 Processing by Cavy::ItemGroupsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/_form.html.haml (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/edit.html.haml within layouts/cavy/admin_layout (18.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 71ms (Views: 41.8ms | ActiveRecord: 0.9ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:50:40 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 56ms (Views: 26.3ms | ActiveRecord: 0.7ms) Started GET "/en/admin/sections/edit/1" for 127.0.0.1 at 2017-01-31 09:50:42 +0100 Processing by Cavy::ItemSectionsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/edit.html.erb within layouts/cavy/admin_layout Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/_form.html.erb (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/edit.html.erb within layouts/cavy/admin_layout (39.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 93ms (Views: 71.9ms | ActiveRecord: 1.2ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:50:46 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 72ms (Views: 30.5ms | ActiveRecord: 1.4ms) Started GET "/en/admin/item_group/1" for 127.0.0.1 at 2017-01-31 09:50:48 +0100 Processing by Cavy::ItemGroupsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 [["item_group_id", 1]] Cavy::Item Load (0.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."item_group_id" = $1 ORDER BY position asc [["item_group_id", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/show.html.haml within layouts/cavy/admin_layout (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 46ms (Views: 30.4ms | ActiveRecord: 1.8ms) Started GET "/en/admin/item/edit/1" for 127.0.0.1 at 2017-01-31 09:50:49 +0100 Processing by Cavy::ItemsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Item Load (0.2ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/edit.html.haml within layouts/cavy/admin_layout (19.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 65ms (Views: 43.9ms | ActiveRecord: 0.9ms) Started GET "/en/admin/item/edit/1" for 127.0.0.1 at 2017-01-31 09:51:03 +0100 Processing by Cavy::ItemsController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Item Load (0.4ms) SELECT "cavy_items".* FROM "cavy_items" WHERE "cavy_items"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/_form.html.haml (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/items/edit.html.haml within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 38ms (Views: 30.9ms | ActiveRecord: 1.1ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:51:06 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 100ms (Views: 27.2ms | ActiveRecord: 1.0ms) Started GET "/en/users/1/edit" for 127.0.0.1 at 2017-01-31 09:51:09 +0100 Processing by Cavy::UsersController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout (22.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 63ms (Views: 47.5ms | ActiveRecord: 1.1ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:54:01 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 152ms (Views: 113.8ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:54:04 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 48ms (Views: 28.0ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:54:10 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.6ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.4ms) Completed 200 OK in 57ms (Views: 28.8ms | ActiveRecord: 1.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:54:11 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.8ms) Completed 200 OK in 48ms (Views: 26.8ms | ActiveRecord: 0.6ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:54:12 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.2ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 35ms (Views: 30.5ms | ActiveRecord: 1.4ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 09:54:14 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 52ms (Views: 30.8ms | ActiveRecord: 1.2ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-31 09:55:01 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (16.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 60ms (Views: 39.4ms | ActiveRecord: 0.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:55:03 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 88ms (Views: 36.0ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:55:05 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.4ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.0ms) Completed 200 OK in 34ms (Views: 27.0ms | ActiveRecord: 1.1ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:55:06 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 31ms (Views: 26.8ms | ActiveRecord: 0.7ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:55:08 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (7.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 35ms (Views: 30.8ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 09:55:25 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 34ms (Views: 28.7ms | ActiveRecord: 1.5ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 09:55:26 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 33ms (Views: 25.9ms | ActiveRecord: 1.2ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 09:55:28 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.0ms) Completed 200 OK in 46ms (Views: 27.9ms | ActiveRecord: 0.9ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 09:55:29 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.3ms) Completed 200 OK in 56ms (Views: 34.5ms | ActiveRecord: 1.4ms) Started GET "/" for 127.0.0.1 at 2017-01-31 13:34:41 +0100 Processing by Cavy::PagesController#page as HTML  (66.9ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 611ms (ActiveRecord: 315.8ms) Started GET "/en/" for 127.0.0.1 at 2017-01-31 13:34:46 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::Page Load (43.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (24.6ms) Cavy::Page Load (181.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (554.7ms) Completed 200 OK in 1347ms (Views: 718.9ms | ActiveRecord: 546.3ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-31 13:35:16 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/admin/signin Filter chain halted as :authorize rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-01-31 13:35:16 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (1.3ms) Completed 200 OK in 57ms (Views: 26.4ms | ActiveRecord: 0.0ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-01-31 13:35:26 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zu97n3nwu8hpOXs3SU08qSkITRzERgHVWab6ZDI/cERoHezodksTbqaO3NBhI3+Q6IQTXxdb2+WSHx9IUseA2w==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/admin Completed 302 Found in 78ms (ActiveRecord: 4.3ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-31 13:35:26 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.9ms) Cavy::ItemSection Load (26.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (61.8ms) Completed 200 OK in 305ms (Views: 205.3ms | ActiveRecord: 31.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 13:35:33 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 49ms (Views: 28.4ms | ActiveRecord: 1.3ms) Started GET "/en/admin/section/1" for 127.0.0.1 at 2017-01-31 13:35:36 +0100 Processing by Cavy::ItemSectionsController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::ItemSection Load (18.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" WHERE "cavy_item_sections"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::ItemGroup Load (47.6ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" WHERE "cavy_item_groups"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/show.html.erb within layouts/cavy/admin_layout (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 174ms (Views: 25.3ms | ActiveRecord: 69.5ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 13:35:38 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.1ms) Completed 200 OK in 67ms (Views: 25.4ms | ActiveRecord: 1.4ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 13:35:50 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Cavy::ItemGroup Load (0.3ms) SELECT "cavy_item_groups".* FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 54ms (Views: 38.9ms | ActiveRecord: 2.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 13:36:26 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 41ms (Views: 35.0ms | ActiveRecord: 2.3ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-01-31 13:36:58 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Cavy::Page Load (42.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (138.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 277ms (Views: 162.2ms | ActiveRecord: 43.2ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:18:10 +0100 ActionController::RoutingError - uninitialized constant Cavy::AdminPageTemplatesController: actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:46:in `rescue in controller' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:44:in `controller' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:30:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/a01333a7a1ac9b56/variables" for 127.0.0.1 at 2017-01-31 14:18:11 +0100 Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:18:43 +0100 NoMethodError - undefined method `make_response!' for Cavy::AdminPageTemplatesController:Class: actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:31:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/ed99bb7ad59bd617/variables" for 127.0.0.1 at 2017-01-31 14:18:43 +0100 Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:19:07 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Completed 500 in 191ms (ActiveRecord: 1.7ms) ActionController::UnknownFormat - Cavy::AdminPageTemplatesController#index is missing a template for this request format and variant. request.formats: ["text/html"] request.variant: [] NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:56:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/322cb0902be17614/variables" for 127.0.0.1 at 2017-01-31 14:19:09 +0100 Cavy::PageTemplate Load (61.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:19:36 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Completed 500 in 96ms (ActiveRecord: 0.4ms) ActionController::UnknownFormat - Cavy::AdminPageTemplatesController#index is missing a template for this request format and variant. request.formats: ["text/html"] request.variant: [] NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:56:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/a4ad0aa3e4c81177/variables" for 127.0.0.1 at 2017-01-31 14:19:37 +0100 Cavy::PageTemplate Load (21.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:20:22 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/first_time (0.4ms) Completed 200 OK in 601ms (Views: 596.5ms | ActiveRecord: 0.6ms)  (23.3ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (67.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddUser (20141111180022)  (15.8ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddUser < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (479.0ms) CREATE TABLE "cavy_users" ("id" serial primary key, "email" character varying, "name" character varying, "password_digest" character varying, "auth_token" character varying, "role" character varying, "created_at" timestamp, "updated_at" timestamp)  (0.4ms) ROLLBACK  (0.3ms) SELECT pg_advisory_unlock(7080462405313721235)  (368.7ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)  (29.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (32.1ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddUser (20141111180022)  (0.3ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddUser < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (184.2ms) CREATE TABLE "cavy_users" ("id" serial primary key, "email" character varying, "name" character varying, "password_digest" character varying, "auth_token" character varying, "role" character varying, "created_at" timestamp, "updated_at" timestamp) SQL (31.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20141111180022"]]  (0.6ms) COMMIT Migrating to AddHstore (20141114191059)  (0.5ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddHstore < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (1025.9ms) CREATE EXTENSION hstore SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20141114191059"]]  (0.8ms) COMMIT Migrating to AddPagesTable (20141114211928)  (0.3ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddPagesTable < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (2.9ms) CREATE TABLE "cavy_pages" ("id" serial primary key, "title" hstore, "content" hstore, "data" hstore, "render" character varying, "route" character varying, "description" text, "tags" character varying[], "page_elements" json) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20141114211928"]]  (0.5ms) COMMIT Migrating to AddItems (20141116191811)  (15.5ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddItems < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (18.9ms) CREATE TABLE "cavy_items" ("id" serial primary key, "data" hstore, "position" integer) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20141116191811"]]  (0.5ms) COMMIT Migrating to AddItemGroups (20141116192552)  (31.5ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddItemGroups < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (2.9ms) CREATE TABLE "cavy_item_groups" ("id" serial primary key, "title" character varying, "params" character varying[])  (63.5ms) ALTER TABLE "cavy_items" ADD "item_group_id" integer SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20141116192552"]]  (0.5ms) COMMIT Migrating to AddItemSections (20141116193508)  (15.5ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddItemSections < ActiveRecord::Migration[4.2] (called from require at bin/rails:12)  (17.8ms) CREATE TABLE "cavy_item_sections" ("id" serial primary key, "title" character varying, "item_groups" integer[]) SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20141116193508"]]  (0.5ms) COMMIT Migrating to CreateCavyPageTemplates (20170131131020)  (14.7ms) BEGIN  (29.3ms) CREATE TABLE "cavy_page_templates" ("id" serial primary key, "name" character varying, "template" character varying, "fields" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131131020"]]  (0.5ms) COMMIT ActiveRecord::InternalMetadata Load (26.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (26.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2017-01-31 13:26:02 UTC], ["updated_at", 2017-01-31 13:26:02 UTC]]  (21.3ms) COMMIT  (0.4ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/" for 127.0.0.1 at 2017-01-31 14:27:18 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (17.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (0.6ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en/first_time/welcome Filter chain halted as :check_first_time rendered or redirected Completed 302 Found in 350ms (ActiveRecord: 20.3ms) Started GET "/en/first_time/welcome" for 127.0.0.1 at 2017-01-31 14:27:20 +0100 Processing by Cavy::FirstTimeController#welcome as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (0.4ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users" Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/welcome.html.erb within layouts/cavy/first_time (35.2ms) Completed 200 OK in 1824ms (Views: 1714.6ms | ActiveRecord: 1.0ms) Started GET "/en/first_time/user" for 127.0.0.1 at 2017-01-31 14:27:26 +0100 Processing by Cavy::FirstTimeController#new_user as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (0.3ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users" Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/new_user.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/first_time/new_user.html.erb within layouts/cavy/first_time (0.6ms) Completed 200 OK in 133ms (Views: 100.2ms | ActiveRecord: 0.8ms) Started POST "/en/first_time/user" for 127.0.0.1 at 2017-01-31 14:27:36 +0100 Processing by Cavy::FirstTimeController#create_user as HTML Parameters: {"name"=>"Thomas Muntaner", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]]  (0.3ms) SELECT COUNT(*) FROM "cavy_users" CACHE (0.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "WoEPcrmvBz92Rwhar_nNgg"], ["LIMIT", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "cavy_users"  (0.3ms) BEGIN Cavy::User Exists (0.4ms) SELECT 1 AS one FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Cavy::User Exists (0.3ms) SELECT 1 AS one FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] SQL (34.5ms) INSERT INTO "cavy_users" ("email", "name", "password_digest", "auth_token", "role", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["email", "thomas.muntaner@gmail.com"], ["name", "Thomas Muntaner"], ["password_digest", "$2a$10$HbUdFZlhM/IKtK./t5HDseFRS6EuXh8zcY8MgY3mFwLHp9CUeAeeS"], ["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["role", "admin"], ["created_at", 2017-01-31 13:27:36 UTC], ["updated_at", 2017-01-31 13:27:36 UTC]]  (17.0ms) COMMIT Redirected to http://localhost:3000/en/admin Completed 302 Found in 295ms (ActiveRecord: 55.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-01-31 14:27:37 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (26.0ms) Cavy::ItemSection Load (24.9ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (153.9ms) Completed 200 OK in 363ms (Views: 269.4ms | ActiveRecord: 26.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 14:27:42 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (19.8ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (24.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 68ms (Views: 28.4ms | ActiveRecord: 21.9ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 14:29:11 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (20.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 93ms (Views: 46.1ms | ActiveRecord: 0.8ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 14:29:13 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (16.0ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (21.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 114ms (Views: 28.0ms | ActiveRecord: 17.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 14:29:15 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.8ms) Completed 200 OK in 30ms (Views: 25.5ms | ActiveRecord: 0.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 14:29:17 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (7.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 59ms (Views: 38.5ms | ActiveRecord: 1.0ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 14:29:19 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.1ms) Completed 200 OK in 33ms (Views: 28.3ms | ActiveRecord: 0.7ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-01-31 14:29:21 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.haml within layouts/cavy/admin_layout (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 302ms (Views: 295.4ms | ActiveRecord: 1.3ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-01-31 14:29:23 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (19.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 83ms (Views: 42.1ms | ActiveRecord: 1.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 14:29:29 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (30.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 58ms (Views: 53.2ms | ActiveRecord: 1.0ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-01-31 14:29:41 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.9ms) Completed 200 OK in 78ms (Views: 57.5ms | ActiveRecord: 0.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 14:29:42 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 45ms (Views: 26.7ms | ActiveRecord: 1.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-01-31 14:30:58 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 343ms (Views: 317.8ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:31:00 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/first_time Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/first_time (0.6ms) Completed 200 OK in 119ms (Views: 48.7ms | ActiveRecord: 0.3ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:36:09 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/first_time  (35.2ms) SELECT COUNT(*) FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/first_time (39.5ms) Completed 200 OK in 412ms (Views: 371.9ms | ActiveRecord: 36.4ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:36:35 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (24.6ms) Completed 200 OK in 284ms (Views: 196.1ms | ActiveRecord: 5.4ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:49:44 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (25.5ms) Completed 200 OK in 345ms (Views: 255.2ms | ActiveRecord: 7.1ms) Started GET "/en/admin/page_template/new" for 127.0.0.1 at 2017-01-31 14:49:49 +0100 Processing by Cavy::AdminPageTemplatesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml (427.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout (429.9ms) Completed 500 in 462ms (ActiveRecord: 1.6ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) NoMethodError - undefined method `render' for #: activemodel (5.0.1) lib/active_model/attribute_methods.rb:433:in `method_missing' actionview (5.0.1) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (5.0.1) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' actionview (5.0.1) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' actionview (5.0.1) lib/action_view/helpers/tags/text_field.rb:13:in `render' actionview (5.0.1) lib/action_view/helpers/form_helper.rb:793:in `text_field' actionview (5.0.1) lib/action_view/helpers/form_helper.rb:1302:in `text_field' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml:26:in `block in ___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_page_templates__form_html_haml___2009424437666835116_70159935495600' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.7) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (5.0.1) lib/action_view/helpers/capture_helper.rb:39:in `block in capture' actionview (5.0.1) lib/action_view/helpers/capture_helper.rb:203:in `with_output_buffer' haml (4.0.7) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (5.0.1) lib/action_view/helpers/capture_helper.rb:39:in `capture' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (5.0.1) lib/action_view/helpers/form_helper.rb:450:in `form_for' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.7) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml:10:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_page_templates__form_html_haml___2009424437666835116_70159935495600' actionview (5.0.1) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:354:in `instrument' actionview (5.0.1) lib/action_view/template.rb:157:in `render' actionview (5.0.1) lib/action_view/renderer/partial_renderer.rb:343:in `render_partial' actionview (5.0.1) lib/action_view/renderer/partial_renderer.rb:311:in `block in render' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.1) lib/action_view/renderer/partial_renderer.rb:310:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (5.0.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb:5:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_page_templates_new_html_erb__4299052774660098844_70159939554220' actionview (5.0.1) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:354:in `instrument' actionview (5.0.1) lib/action_view/template.rb:157:in `render' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/5c7366428e14c53b/variables" for 127.0.0.1 at 2017-01-31 14:49:50 +0100 Started GET "/en/admin/page_template/new" for 127.0.0.1 at 2017-01-31 14:52:32 +0100 Processing by Cavy::AdminPageTemplatesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml (11.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout (35.9ms) Completed 500 in 156ms (ActiveRecord: 5.5ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) NoMethodError - undefined method `render' for #: activemodel (5.0.1) lib/active_model/attribute_methods.rb:433:in `method_missing' actionview (5.0.1) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (5.0.1) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast' actionview (5.0.1) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' actionview (5.0.1) lib/action_view/helpers/tags/text_field.rb:13:in `render' actionview (5.0.1) lib/action_view/helpers/form_helper.rb:793:in `text_field' actionview (5.0.1) lib/action_view/helpers/form_helper.rb:1302:in `text_field' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml:26:in `block in ___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_page_templates__form_html_haml___2009424437666835116_70159960056020' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.7) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (5.0.1) lib/action_view/helpers/capture_helper.rb:39:in `block in capture' actionview (5.0.1) lib/action_view/helpers/capture_helper.rb:203:in `with_output_buffer' haml (4.0.7) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (5.0.1) lib/action_view/helpers/capture_helper.rb:39:in `capture' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (5.0.1) lib/action_view/helpers/form_helper.rb:450:in `form_for' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.7) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml:10:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_page_templates__form_html_haml___2009424437666835116_70159960056020' actionview (5.0.1) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:354:in `instrument' actionview (5.0.1) lib/action_view/template.rb:157:in `render' actionview (5.0.1) lib/action_view/renderer/partial_renderer.rb:343:in `render_partial' actionview (5.0.1) lib/action_view/renderer/partial_renderer.rb:311:in `block in render' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.1) lib/action_view/renderer/partial_renderer.rb:310:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (5.0.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb:5:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_page_templates_new_html_erb__4299052774660098844_70159976944440' actionview (5.0.1) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.1) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.1) lib/action_view/template.rb:354:in `instrument' actionview (5.0.1) lib/action_view/template.rb:157:in `render' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.1) lib/action_view/rendering.rb:103:in `_render_template' actionpack (5.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.1) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.1) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:52:33 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:09 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:10 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:12 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:14 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:15 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:17 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:23 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:25 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:32 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:34 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:35 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:35 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:36 +0100 Started POST "/__better_errors/ddc7e86f91452c99/variables" for 127.0.0.1 at 2017-01-31 14:53:39 +0100 Started GET "/en/admin/page_template/new" for 127.0.0.1 at 2017-01-31 14:54:34 +0100 Processing by Cavy::AdminPageTemplatesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml (7.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout (27.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (46.6ms) Completed 200 OK in 660ms (Views: 382.4ms | ActiveRecord: 7.0ms) Started GET "/en/admin/page_template/new" for 127.0.0.1 at 2017-01-31 14:55:53 +0100 Processing by Cavy::AdminPageTemplatesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout (28.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.4ms) Completed 200 OK in 312ms (Views: 252.0ms | ActiveRecord: 0.8ms) Started POST "/en/admin/page_template" for 127.0.0.1 at 2017-01-31 14:56:11 +0100 Processing by Cavy::AdminPageTemplatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"b70YVoKVq0Yv9lf+n4JntU4bZrDuIDWimFjxuTXamPrJT48hjS4D4OBB8Bm37CSMj5c48z0975JT4RSVVSJoZQ==", "page_template"=>{"name"=>"Page", "template"=>"page"}, "commit"=>"Create", "locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (33.6ms) INSERT INTO "cavy_page_templates" ("name", "template", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Page"], ["template", "page"], ["created_at", 2017-01-31 13:56:11 UTC], ["updated_at", 2017-01-31 13:56:11 UTC]]  (0.6ms) COMMIT Redirected to http://localhost:3000/en/admin/page_template/1 Completed 302 Found in 44ms (ActiveRecord: 34.7ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-01-31 14:56:11 +0100 Processing by Cavy::AdminPageTemplatesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Completed 500 in 53ms (ActiveRecord: 0.4ms) ActionController::UnknownFormat - Cavy::AdminPageTemplatesController#show is missing a template for this request format and variant. request.formats: ["text/html"] request.variant: [] NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.: actionpack (5.0.1) lib/action_controller/metal/implicit_render.rb:56:in `default_render' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/169b9fc902e89a95/variables" for 127.0.0.1 at 2017-01-31 14:56:11 +0100 Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:56:59 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (138.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (151.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (38.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (46.6ms) Completed 200 OK in 970ms (Views: 680.7ms | ActiveRecord: 144.9ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 14:58:38 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (10.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (23.3ms) Completed 200 OK in 325ms (Views: 219.2ms | ActiveRecord: 7.2ms) Started GET "/en/admin/page_template/1/edit" for 127.0.0.1 at 2017-01-31 15:02:21 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Cavy::PageTemplate Load (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (50.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (48.4ms) Completed 200 OK in 545ms (Views: 423.8ms | ActiveRecord: 6.8ms) Started PATCH "/en/admin/page_template/1" for 127.0.0.1 at 2017-01-31 15:02:30 +0100 ActionController::RoutingError (No route matches [PATCH] "/en/admin/page_template/1"): actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (60.7ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [57 times] (13.5ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (36.0ms) Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (249.9ms) Started PATCH "/en/admin/page_template/1" for 127.0.0.1 at 2017-01-31 15:02:57 +0100 Processing by Cavy::AdminPageTemplatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"efHeTd85M7ne4fKzHT2o1uxgjkk31asDfDyoJwiubObfA0k60IKbHxFWVVQ1U+vvLezQCuTIcTO3hU0LaFaceQ==", "page_template"=>{"name"=>"Page", "template"=>"page"}, "commit"=>"Update", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page_templates Completed 302 Found in 75ms (ActiveRecord: 5.7ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 15:02:57 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (27.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (47.6ms) Completed 200 OK in 219ms (Views: 213.2ms | ActiveRecord: 2.5ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-01-31 15:03:01 +0100 ActionController::RoutingError (No route matches [GET] "/en/admin/page_template/1"): actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (1.1ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [57 times] (122.1ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (232.6ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 15:03:54 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 308ms (Views: 282.0ms | ActiveRecord: 1.3ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-01-31 15:04:12 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 237ms (Views: 231.2ms | ActiveRecord: 1.3ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-01-31 15:04:15 +0100 ActionController::RoutingError (No route matches [GET] "/en/admin/page_template/1"): actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (1.0ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [57 times] (14.5ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.2ms) ActiveRecord::SchemaMigration Load (72.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (18.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]  (1300.4ms) DROP DATABASE IF EXISTS "cavy_test"  (4583.0ms) CREATE DATABASE "cavy_test" ENCODING = 'unicode' SQL (57.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" SQL (739.8ms) CREATE EXTENSION IF NOT EXISTS "hstore"  (204.7ms) CREATE TABLE "cavy_groups" ("id" serial primary key, "name" character varying, "is_super_admin" boolean, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (1.8ms) CREATE UNIQUE INDEX "index_cavy_groups_on_name" ON "cavy_groups" USING btree ("name")  (1.0ms) CREATE TABLE "cavy_groups_policies" ("cavy_group_id" integer NOT NULL, "cavy_policy_id" integer NOT NULL)  (34.6ms) CREATE TABLE "cavy_groups_users" ("cavy_user_id" integer NOT NULL, "cavy_group_id" integer NOT NULL)  (3.8ms) CREATE TABLE "cavy_item_groups" ("id" serial primary key, "title" character varying, "params" character varying[])  (3.2ms) CREATE TABLE "cavy_item_sections" ("id" serial primary key, "title" character varying, "item_groups" integer[])  (4.4ms) CREATE TABLE "cavy_items" ("id" serial primary key, "data" hstore, "position" integer, "item_group_id" integer)  (4.8ms) CREATE TABLE "cavy_page_templates" ("id" serial primary key, "name" character varying, "template" character varying, "fields" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (4.1ms) CREATE TABLE "cavy_pages" ("id" serial primary key, "title" hstore, "content" hstore, "data" hstore, "render" character varying, "route" character varying, "description" text, "tags" character varying[], "page_elements" json)  (3.8ms) CREATE TABLE "cavy_policies" ("id" serial primary key, "name" character varying)  (1.3ms) CREATE UNIQUE INDEX "index_cavy_policies_on_name" ON "cavy_policies" USING btree ("name")  (3.9ms) CREATE TABLE "cavy_users" ("id" serial primary key, "email" character varying, "name" character varying, "password_digest" character varying, "auth_token" character varying, "role" character varying, "created_at" timestamp, "updated_at" timestamp)  (21.9ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)  (0.5ms) SELECT version FROM "schema_migrations"  (67.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20170131131020')  (0.7ms) INSERT INTO schema_migrations (version) VALUES ('20141111180022'), ('20141114191059'), ('20141114211928'), ('20141116191811'), ('20141116192552'), ('20141116193508');   (3.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) ActiveRecord::InternalMetadata Load (34.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (43.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2017-02-06 20:48:46 UTC], ["updated_at", 2017-02-06 20:48:46 UTC]]  (0.5ms) COMMIT ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.1ms) BEGIN  (0.1ms) COMMIT Started GET "/" for 127.0.0.1 at 2017-02-14 08:26:22 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (106.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Completed 500 in 1205ms (ActiveRecord: 828.0ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) PG::UndefinedTable - ERROR: relation "cavy_groups_users" does not exist LINE 8: WHERE a.attrelid = '"cavy_groups_users"'::reg... ^ : activerecord (5.0.1) lib/active_record/connection_adapters/postgresql/database_statements.rb:88:in `block in query' activerecord (5.0.1) lib/active_record/connection_adapters/abstract_adapter.rb:589:in `block in log' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activerecord (5.0.1) lib/active_record/connection_adapters/abstract_adapter.rb:583:in `log' activerecord (5.0.1) lib/active_record/connection_adapters/postgresql/database_statements.rb:87:in `query' activerecord (5.0.1) lib/active_record/connection_adapters/postgresql_adapter.rb:739:in `column_definitions' activerecord (5.0.1) lib/active_record/connection_adapters/postgresql/schema_statements.rb:227:in `columns' activerecord (5.0.1) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns' activerecord (5.0.1) lib/active_record/connection_adapters/schema_cache.rb:62:in `columns_hash' activerecord (5.0.1) lib/active_record/model_schema.rb:441:in `load_schema!' activerecord (5.0.1) lib/active_record/attributes.rb:233:in `load_schema!' activerecord (5.0.1) lib/active_record/attribute_decorators.rb:28:in `load_schema!' activerecord (5.0.1) lib/active_record/model_schema.rb:436:in `load_schema' activerecord (5.0.1) lib/active_record/model_schema.rb:349:in `attribute_types' activerecord (5.0.1) lib/active_record/model_schema.rb:368:in `type_for_attribute' activerecord (5.0.1) lib/active_record/type_caster/map.rb:10:in `type_cast_for_database' arel (7.1.4) lib/arel/table.rb:99:in `type_cast_for_database' arel (7.1.4) lib/arel/attributes/attribute.rb:17:in `type_cast_for_database' arel (7.1.4) lib/arel/visitors/to_sql.rb:749:in `quoted' arel (7.1.4) lib/arel/visitors/to_sql.rb:157:in `visit_Arel_Nodes_Casted' arel (7.1.4) lib/arel/visitors/reduce.rb:13:in `visit' arel (7.1.4) lib/arel/visitors/to_sql.rb:668:in `visit_Arel_Nodes_Equality' arel (7.1.4) lib/arel/visitors/reduce.rb:13:in `visit' arel (7.1.4) lib/arel/visitors/to_sql.rb:823:in `block in inject_join' arel (7.1.4) lib/arel/visitors/to_sql.rb:821:in `inject_join' arel (7.1.4) lib/arel/visitors/to_sql.rb:637:in `visit_Arel_Nodes_And' arel (7.1.4) lib/arel/visitors/reduce.rb:13:in `visit' arel (7.1.4) lib/arel/visitors/to_sql.rb:269:in `block in collect_nodes_for' arel (7.1.4) lib/arel/visitors/to_sql.rb:268:in `collect_nodes_for' arel (7.1.4) lib/arel/visitors/to_sql.rb:253:in `visit_Arel_Nodes_SelectCore' arel (7.1.4) lib/arel/visitors/to_sql.rb:216:in `block in visit_Arel_Nodes_SelectStatement' arel (7.1.4) lib/arel/visitors/to_sql.rb:215:in `visit_Arel_Nodes_SelectStatement' arel (7.1.4) lib/arel/visitors/reduce.rb:13:in `visit' arel (7.1.4) lib/arel/visitors/reduce.rb:7:in `accept' activerecord (5.0.1) lib/active_record/connection_adapters/determine_if_preparable_visitor.rb:8:in `accept' activerecord (5.0.1) lib/active_record/connection_adapters/abstract/database_statements.rb:12:in `to_sql' activerecord (5.0.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all' activerecord (5.0.1) lib/active_record/connection_adapters/abstract/query_cache.rb:95:in `select_all' activerecord (5.0.1) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (5.0.1) lib/active_record/relation.rb:702:in `exec_queries' activerecord (5.0.1) lib/active_record/relation.rb:583:in `load' activerecord (5.0.1) lib/active_record/associations/preloader/association.rb:122:in `block in load_records' activerecord (5.0.1) lib/active_record/associations/preloader/association.rb:121:in `load_records' activerecord (5.0.1) lib/active_record/associations/preloader/association.rb:65:in `associated_records_by_owner' activerecord (5.0.1) lib/active_record/associations/preloader/collection_association.rb:8:in `preload' activerecord (5.0.1) lib/active_record/associations/preloader/association.rb:19:in `run' activerecord (5.0.1) lib/active_record/associations/preloader.rb:151:in `block (2 levels) in preloaders_for_one' activerecord (5.0.1) lib/active_record/associations/preloader.rb:149:in `block in preloaders_for_one' activerecord (5.0.1) lib/active_record/associations/preloader.rb:148:in `preloaders_for_one' activerecord (5.0.1) lib/active_record/associations/preloader.rb:115:in `preloaders_on' activerecord (5.0.1) lib/active_record/associations/preloader.rb:102:in `block in preload' activerecord (5.0.1) lib/active_record/associations/preloader.rb:101:in `preload' activerecord (5.0.1) lib/active_record/associations/preloader/through_association.rb:14:in `associated_records_by_owner' activerecord (5.0.1) lib/active_record/associations/preloader/has_many_through.rb:8:in `associated_records_by_owner' activerecord (5.0.1) lib/active_record/associations/preloader/collection_association.rb:8:in `preload' activerecord (5.0.1) lib/active_record/associations/preloader/association.rb:19:in `run' activerecord (5.0.1) lib/active_record/associations/preloader.rb:151:in `block (2 levels) in preloaders_for_one' activerecord (5.0.1) lib/active_record/associations/preloader.rb:149:in `block in preloaders_for_one' activerecord (5.0.1) lib/active_record/associations/preloader.rb:148:in `preloaders_for_one' activerecord (5.0.1) lib/active_record/associations/preloader.rb:125:in `block in preloaders_for_hash' activerecord (5.0.1) lib/active_record/associations/preloader.rb:124:in `preloaders_for_hash' activerecord (5.0.1) lib/active_record/associations/preloader.rb:113:in `preloaders_on' activerecord (5.0.1) lib/active_record/associations/preloader.rb:102:in `block in preload' activerecord (5.0.1) lib/active_record/associations/preloader.rb:101:in `preload' activerecord (5.0.1) lib/active_record/relation.rb:708:in `block in exec_queries' activerecord (5.0.1) lib/active_record/relation.rb:707:in `exec_queries' activerecord (5.0.1) lib/active_record/relation.rb:583:in `load' activerecord (5.0.1) lib/active_record/relation.rb:260:in `records' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:527:in `find_take' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:100:in `take' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:78:in `find_by' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:39:in `current_user' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:43:in `signed_in?' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/application_controller.rb:47:in `check_first_time' activesupport (5.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.1) lib/active_support/callbacks.rb:170:in `block in halting' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/67ce5fc4cd30ff9c/variables" for 127.0.0.1 at 2017-02-14 08:26:27 +0100  (46.2ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (22.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddUserPolicies (20170206144114)  (15.6ms) BEGIN  (787.5ms) CREATE TABLE "cavy_groups" ("id" serial primary key, "name" character varying, "is_super_admin" boolean, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (35.9ms) CREATE UNIQUE INDEX "index_cavy_groups_on_name" ON "cavy_groups" ("name")  (33.1ms) CREATE TABLE "cavy_policies" ("id" serial primary key, "name" character varying)  (60.0ms) CREATE UNIQUE INDEX "index_cavy_policies_on_name" ON "cavy_policies" ("name")  (0.7ms) CREATE TABLE "cavy_groups_users" ("cavy_user_id" integer NOT NULL, "cavy_group_id" integer NOT NULL)  (0.8ms) CREATE TABLE "cavy_groups_policies" ("cavy_group_id" integer NOT NULL, "cavy_policy_id" integer NOT NULL) SQL (58.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170206144114"]]  (74.0ms) COMMIT ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.3ms) BEGIN  (0.3ms) COMMIT  (0.2ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/" for 127.0.0.1 at 2017-02-14 08:27:32 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 102ms (ActiveRecord: 4.5ms) Started GET "/en/" for 127.0.0.1 at 2017-02-14 08:27:32 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (64.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (38.6ms) Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (33.3ms) Completed 200 OK in 2047ms (Views: 1924.5ms | ActiveRecord: 67.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-14 08:27:37 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.9ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.5ms) Completed 200 OK in 553ms (Views: 386.1ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-14 08:27:40 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (61.6ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (222.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (326.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.3ms) Completed 200 OK in 400ms (Views: 59.6ms | ActiveRecord: 308.2ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-14 08:27:44 +0100 Processing by Cavy::AdminPageTemplatesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (37.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 110ms (Views: 42.2ms | ActiveRecord: 40.5ms) Started POST "/en/admin/page_templates/1/field" for 127.0.0.1 at 2017-02-14 08:27:50 +0100 Processing by Cavy::AdminPageTemplateFieldsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"NhFCSjsfCytJSgS7h+9JvQTDsu43vZ8c9r9/VlSHuyaQ49U9NKSjjYb9o1yvgQqExU/sreSgRSw9Bpp6NH9LuQ==", "page_template"=>{"name"=>"content", "type"=>"STRING"}, "commit"=>"Add", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (1.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (26.5ms) UPDATE "cavy_page_templates" SET "fields" = $1, "updated_at" = $2 WHERE "cavy_page_templates"."id" = $3 [["fields", "\"content\"=>\"STRING\""], ["updated_at", 2017-02-14 07:27:50 UTC], ["id", 1]]  (0.6ms) COMMIT Redirected to http://localhost:3000/en/admin/page_template/1 Completed 302 Found in 47ms (ActiveRecord: 30.1ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-14 08:27:50 +0100 Processing by Cavy::AdminPageTemplatesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 33ms (Views: 25.0ms | ActiveRecord: 1.6ms) Started POST "/en/admin/page_templates/1/field" for 127.0.0.1 at 2017-02-14 08:27:54 +0100 Processing by Cavy::AdminPageTemplateFieldsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"dtynDrOsivgaCNrM9ezqQjefcbSiFE6Jtnf1Q66cvHjQLjB5vBciXtW/fSvdgql79hMv93EJlLl9zhBvzmRM5w==", "page_template"=>{"name"=>"content", "type"=>"TEXT"}, "commit"=>"Update", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) BEGIN SQL (0.4ms) UPDATE "cavy_page_templates" SET "fields" = $1, "updated_at" = $2 WHERE "cavy_page_templates"."id" = $3 [["fields", "\"content\"=>\"TEXT\""], ["updated_at", 2017-02-14 07:27:54 UTC], ["id", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page_template/1 Completed 302 Found in 12ms (ActiveRecord: 2.1ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-14 08:27:54 +0100 Processing by Cavy::AdminPageTemplatesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 40ms (Views: 29.4ms | ActiveRecord: 2.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-14 08:27:57 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 35ms (Views: 28.3ms | ActiveRecord: 1.1ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-14 08:27:58 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 44ms (Views: 27.7ms | ActiveRecord: 1.9ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-14 08:28:01 +0100 Processing by Cavy::AdminPageTemplatesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.2ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.2ms) Completed 200 OK in 38ms (Views: 29.6ms | ActiveRecord: 1.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-14 08:28:04 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 54ms (Views: 29.8ms | ActiveRecord: 1.7ms) Started GET "/en/admin/new_page" for 127.0.0.1 at 2017-02-14 08:28:05 +0100 Processing by Cavy::AdminPagesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout (595.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 754ms (Views: 623.0ms | ActiveRecord: 5.6ms) Started POST "/en/admin/page" for 127.0.0.1 at 2017-02-14 08:28:12 +0100 Processing by Cavy::AdminPagesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"b39NB+4hCrre5ZBsrxAu+wixUS24ClTOMBHfEkfsgZjJjdpw4ZqiHBFSN4uHfm3CyT0PbmsXjv77qDo+JxRxBw==", "page"=>{"title"=>"Home", "render"=>"page"}, "commit"=>"Submit", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1  (0.3ms) BEGIN Cavy::Page Exists (1.0ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" IS NULL LIMIT $1 [["LIMIT", 1]] SQL (122.9ms) INSERT INTO "cavy_pages" ("title", "render", "route", "page_elements") VALUES ($1, $2, $3, $4) RETURNING "id" [["title", "\"en\"=>\"Home\""], ["render", "page"], ["route", "home"], ["page_elements", "{}"]]  (0.8ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 188ms (ActiveRecord: 125.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-14 08:28:12 +0100 Processing by Cavy::AdminPagesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/show.html.erb within layouts/cavy/admin_layout (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 56ms (Views: 30.7ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-02-14 08:28:14 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" ORDER BY "cavy_page_templates"."id" ASC LIMIT $1 [["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (24.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 82ms (Views: 50.9ms | ActiveRecord: 1.9ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-14 08:30:10 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (1.6ms) Completed 200 OK in 53ms (Views: 27.2ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-14 08:30:19 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 69ms (Views: 30.5ms | ActiveRecord: 2.5ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-14 08:30:22 +0100 Processing by Cavy::AdminPageTemplatesController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/show.html.erb within layouts/cavy/admin_layout (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.3ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 52ms (Views: 28.2ms | ActiveRecord: 1.3ms)  (0.2ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPageTemplateIdToPages (20170214073143)  (0.2ms) BEGIN  (0.2ms) ROLLBACK  (0.4ms) SELECT pg_advisory_unlock(7080462405313721235)  (0.2ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPageTemplateIdToPages (20170214073143)  (0.3ms) BEGIN  (0.2ms) ROLLBACK  (0.3ms) SELECT pg_advisory_unlock(7080462405313721235)  (0.3ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPageTemplateIdToPages (20170214073143)  (0.3ms) BEGIN  (116.4ms) ALTER TABLE "cavy_pages" ADD CONSTRAINT "fk_rails_41edeba8ef" FOREIGN KEY ("cavy_page_template_id") REFERENCES "cavy_page_templates" ("id")   (0.3ms) ROLLBACK  (0.4ms) SELECT pg_advisory_unlock(7080462405313721235)  (0.2ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddPageTemplateIdToPages (20170214073143)  (0.4ms) BEGIN  (29.7ms) ALTER TABLE "cavy_pages" ADD "cavy_page_template_id" integer  (382.9ms) ALTER TABLE "cavy_pages" ADD CONSTRAINT "fk_rails_41edeba8ef" FOREIGN KEY ("cavy_page_template_id") REFERENCES "cavy_page_templates" ("id")  SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170214073143"]]  (16.2ms) COMMIT ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN  (0.2ms) COMMIT  (0.2ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-14 08:42:42 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (17.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (15.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (26.9ms) Completed 200 OK in 270ms (Views: 169.3ms | ActiveRecord: 10.2ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-02-14 08:42:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" ORDER BY "cavy_page_templates"."id" ASC LIMIT $1 [["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 107ms (Views: 29.6ms | ActiveRecord: 2.3ms) Started GET "/en/admin/page/edit/1" for 127.0.0.1 at 2017-02-14 08:45:04 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (7.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" ORDER BY "cavy_page_templates"."id" ASC LIMIT $1 [["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (24.0ms) Completed 200 OK in 323ms (Views: 171.4ms | ActiveRecord: 11.8ms) Started GET "/" for 127.0.0.1 at 2017-02-17 08:24:24 +0100 Processing by Cavy::PagesController#page as HTML  (127.0ms) SELECT COUNT(*) FROM "cavy_users" Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 774ms (ActiveRecord: 472.4ms) Started GET "/en/" for 127.0.0.1 at 2017-02-17 08:24:30 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::Page Load (219.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (50.9ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (21.3ms) Completed 200 OK in 2418ms (Views: 1428.6ms | ActiveRecord: 800.2ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-17 08:26:20 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Redirected to http://localhost:3000/en/admin/signin Filter chain halted as :authorize rendered or redirected Completed 302 Found in 30ms (ActiveRecord: 0.0ms) Started GET "/en/admin/signin" for 127.0.0.1 at 2017-02-17 08:26:20 +0100 Processing by Cavy::SessionsController#new as HTML Parameters: {"locale"=>"en"} Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (4.0ms) Completed 200 OK in 87ms (Views: 65.8ms | ActiveRecord: 0.0ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-02-17 08:26:29 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"saxd35gSrAYG9wPusDnjtT6D7s4lYXRKBS1DT2YeZkJ0oLgOsSrqlBK1vli5ds8zNfcJE7W7Bw7KetUqCD+8kA==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (23.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (3.5ms) Completed 200 OK in 261ms (Views: 85.2ms | ActiveRecord: 30.5ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-02-17 08:26:35 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Urh6XbXiYoFJv0Bw9y3lcj9DAzyYa6GNODwRyyBCCnSXtJ+MnNokE139/cb+Ysn0NDfk4Qix0sn3a4euTmPQpg==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (2.7ms) Completed 200 OK in 138ms (Views: 57.8ms | ActiveRecord: 1.1ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-02-17 08:26:42 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nfrEShjsjtmrYEyHmSzKdqsLjB5MFId+lWtTaSG/IQBY9iGbMdTIS78i8TGQY+bwoH9rw9zO9DpaPMUMT5770g==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/sessions/new.html.erb within layouts/cavy/sessions (2.8ms) Completed 200 OK in 146ms (Views: 70.7ms | ActiveRecord: 1.1ms) Started POST "/en/admin/signin" for 127.0.0.1 at 2017-02-17 08:26:48 +0100 Processing by Cavy::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sTzKNQob6DwCAzyWmnGv4aGVQ0EGHLmbvJwu/bCt+dd0MC/kIyOurhZBgSCTPoNnquGknJbGyt9zy7iY3owjBQ==", "email"=>"thomas.muntaner@gmail.com", "password"=>"[FILTERED]", "locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."email" = $1 LIMIT $2 [["email", "thomas.muntaner@gmail.com"], ["LIMIT", 1]] Redirected to http://localhost:3000/en/admin Completed 302 Found in 78ms (ActiveRecord: 0.4ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-17 08:26:48 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.9ms) Cavy::ItemSection Load (41.9ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (76.0ms) Completed 200 OK in 497ms (Views: 179.3ms | ActiveRecord: 48.3ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-17 08:26:52 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (42.4ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (14.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (91.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 237ms (Views: 120.4ms | ActiveRecord: 63.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:27:02 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (34.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 139ms (Views: 109.2ms | ActiveRecord: 6.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:27:03 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (72.1ms) SELECT "cavy_pages".* FROM "cavy_pages" INNER JOIN "cavy_page_templates" ON "cavy_page_templates"."id" = "cavy_pages"."cavy_page_template_id" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 163ms (ActiveRecord: 73.3ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=1: activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:353:in `raise_record_not_found_exception!' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:479:in `find_one' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:458:in `find_with_ids' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:66:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/5ee503f5975e0ce3/variables" for 127.0.0.1 at 2017-02-17 08:27:04 +0100 Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:27:12 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (1.2ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (13.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.5ms) Completed 200 OK in 114ms (Views: 90.4ms | ActiveRecord: 4.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:27:36 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (21.8ms) SELECT "cavy_pages".* FROM "cavy_pages" Cavy::Page Load (1.1ms) SELECT "cavy_pages".* FROM "cavy_pages" INNER JOIN "cavy_page_templates" ON "cavy_page_templates"."id" = "cavy_pages"."cavy_page_template_id" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 25017ms (ActiveRecord: 23.9ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=1: activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:353:in `raise_record_not_found_exception!' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:479:in `find_one' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:458:in `find_with_ids' activerecord (5.0.1) lib/active_record/relation/finder_methods.rb:66:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.1) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.1) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.1) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.1) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.1) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.1) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.1) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' railties (5.0.1) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.1) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.1) lib/active_record/migration.rb:553:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.1) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/55b68b7ff0474766/variables" for 127.0.0.1 at 2017-02-17 08:28:09 +0100 Started POST "/__better_errors/55b68b7ff0474766/eval" for 127.0.0.1 at 2017-02-17 08:28:25 +0100 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" Started POST "/__better_errors/55b68b7ff0474766/eval" for 127.0.0.1 at 2017-02-17 08:28:30 +0100 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Started POST "/__better_errors/55b68b7ff0474766/variables" for 127.0.0.1 at 2017-02-17 08:28:33 +0100 Cavy::Page Load (1.2ms) SELECT "cavy_pages".* FROM "cavy_pages" INNER JOIN "cavy_page_templates" ON "cavy_page_templates"."id" = "cavy_pages"."cavy_page_template_id" WHERE "cavy_pages"."id" = $1 [["id", 1]] Started POST "/__better_errors/55b68b7ff0474766/variables" for 127.0.0.1 at 2017-02-17 08:28:34 +0100 Started POST "/__better_errors/55b68b7ff0474766/variables" for 127.0.0.1 at 2017-02-17 08:28:35 +0100 Started POST "/__better_errors/55b68b7ff0474766/variables" for 127.0.0.1 at 2017-02-17 08:28:37 +0100 Started POST "/__better_errors/55b68b7ff0474766/eval" for 127.0.0.1 at 2017-02-17 08:29:00 +0100 Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" INNER JOIN "cavy_page_templates" ON "cavy_page_templates"."id" = "cavy_pages"."cavy_page_template_id" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Started POST "/__better_errors/55b68b7ff0474766/eval" for 127.0.0.1 at 2017-02-17 08:29:08 +0100 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:29:46 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (285.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (35.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (32.3ms) Completed 200 OK in 699ms (Views: 493.3ms | ActiveRecord: 12.7ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:30:02 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HTo73K87QtMvbvS/2aBRGWb+N/6sy5RR8LSeONBd6uTYNt4NhgMEQTssSQnQ732fbYrQIzwR5xU/4whdvnwwNg==", "page"=>{"cavy_page_template_id"=>"1", "route"=>"home", "tag_string"=>"", "description"=>""}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (129.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] SQL (288.2ms) UPDATE "cavy_pages" SET "description" = $1, "cavy_page_template_id" = $2 WHERE "cavy_pages"."id" = $3 [["description", ""], ["cavy_page_template_id", 1], ["id", 1]]  (68.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 575ms (ActiveRecord: 489.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:30:02 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (53.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.0ms) Completed 200 OK in 160ms (Views: 133.5ms | ActiveRecord: 2.9ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-17 08:31:14 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.1ms) Completed 200 OK in 117ms (Views: 77.1ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-17 08:31:18 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (13.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 127ms (Views: 95.2ms | ActiveRecord: 3.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:31:21 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (11.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (2.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.1ms) Completed 200 OK in 158ms (Views: 99.5ms | ActiveRecord: 4.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-17 08:31:23 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.6ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.0ms) Completed 200 OK in 483ms (Views: 186.4ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-02-17 08:31:25 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (94.4ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (105.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 344ms (Views: 89.6ms | ActiveRecord: 97.0ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-17 08:31:41 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.6ms) Completed 200 OK in 126ms (Views: 81.8ms | ActiveRecord: 1.5ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-17 08:31:44 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (10.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.7ms) Completed 200 OK in 105ms (Views: 83.9ms | ActiveRecord: 2.4ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-17 08:31:46 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (9.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (27.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.8ms) Completed 200 OK in 280ms (Views: 114.9ms | ActiveRecord: 2.2ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-17 08:32:17 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.7ms) Completed 200 OK in 100ms (Views: 78.1ms | ActiveRecord: 1.6ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-17 08:32:55 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (11.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.1ms) Completed 200 OK in 115ms (Views: 85.0ms | ActiveRecord: 2.2ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-17 08:32:58 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (17.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.7ms) Completed 200 OK in 121ms (Views: 94.4ms | ActiveRecord: 2.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:33:00 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (10.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.4ms) Completed 200 OK in 109ms (Views: 87.4ms | ActiveRecord: 2.3ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-17 08:33:02 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.1ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.4ms) Completed 200 OK in 106ms (Views: 85.9ms | ActiveRecord: 1.5ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-02-17 08:33:04 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.7ms) Completed 200 OK in 101ms (Views: 79.8ms | ActiveRecord: 2.3ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-02-17 08:33:43 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (18.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 134ms (Views: 97.4ms | ActiveRecord: 2.0ms) Started GET "/en/users/1" for 127.0.0.1 at 2017-02-17 08:33:46 +0100 Processing by Cavy::UsersController#show as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::User Load (20.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/show.html.haml within layouts/cavy/admin_layout (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 145ms (Views: 82.3ms | ActiveRecord: 22.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:33:49 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (10.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (15.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 123ms (Views: 99.8ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:33:52 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (34.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 184ms (Views: 116.4ms | ActiveRecord: 3.0ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-17 08:36:42 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (6.5ms) Completed 200 OK in 101ms (Views: 79.7ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-02-17 08:36:44 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (8.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 106ms (Views: 84.6ms | ActiveRecord: 1.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:36:46 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.6ms) Completed 200 OK in 113ms (Views: 90.8ms | ActiveRecord: 2.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-17 08:36:49 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (28.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 130ms (Views: 104.5ms | ActiveRecord: 3.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:37:49 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.1ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.0ms) Completed 200 OK in 135ms (Views: 94.6ms | ActiveRecord: 2.6ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-02-17 08:38:22 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (16.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 152ms (Views: 96.6ms | ActiveRecord: 2.1ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-02-17 08:38:24 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (14.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.0ms) Completed 200 OK in 154ms (Views: 94.4ms | ActiveRecord: 2.0ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-17 08:38:26 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) CACHE (0.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.8ms) Completed 200 OK in 143ms (Views: 90.9ms | ActiveRecord: 1.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-17 08:38:27 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (10.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 110ms (Views: 88.9ms | ActiveRecord: 2.3ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-17 08:38:42 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (11.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.1ms) Completed 200 OK in 131ms (Views: 86.3ms | ActiveRecord: 2.4ms) Started GET "/" for 127.0.0.1 at 2017-02-22 23:56:57 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (420.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (20.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 6588ms (ActiveRecord: 4886.8ms) Started GET "/en/" for 127.0.0.1 at 2017-02-22 23:57:22 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (390.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (122.8ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (32.9ms) Completed 200 OK in 1725ms (Views: 1061.7ms | ActiveRecord: 557.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-22 23:57:37 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (38.4ms) Cavy::ItemSection Load (41.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (78.1ms) Completed 200 OK in 506ms (Views: 439.3ms | ActiveRecord: 43.3ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-22 23:57:41 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (5.1ms) Completed 200 OK in 55ms (Views: 43.4ms | ActiveRecord: 2.0ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-22 23:58:09 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (109.6ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (15.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (141.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 237ms (Views: 40.5ms | ActiveRecord: 133.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-22 23:58:12 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.8ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 66ms (Views: 35.2ms | ActiveRecord: 4.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-22 23:58:15 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.0ms) Completed 200 OK in 64ms (Views: 28.5ms | ActiveRecord: 2.4ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-02-22 23:58:23 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (21.3ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (26.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.9ms) Completed 200 OK in 110ms (Views: 33.9ms | ActiveRecord: 25.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-22 23:58:25 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 56ms (Views: 31.7ms | ActiveRecord: 1.0ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-22 23:59:29 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 34ms (Views: 27.1ms | ActiveRecord: 1.2ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-22 23:59:35 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 76ms (Views: 36.7ms | ActiveRecord: 1.9ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-22 23:59:41 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (60.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (125.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (130.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.5ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 232ms (Views: 161.1ms | ActiveRecord: 62.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:00:09 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 53ms (Views: 31.5ms | ActiveRecord: 3.4ms) Started GET "/en/admin/new_page" for 127.0.0.1 at 2017-02-23 00:00:12 +0100 Processing by Cavy::AdminPagesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/new.html.erb within layouts/cavy/admin_layout (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 66ms (Views: 38.4ms | ActiveRecord: 1.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:00:15 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 38ms (Views: 30.8ms | ActiveRecord: 1.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:00:19 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (25.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (49.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 128ms (Views: 78.3ms | ActiveRecord: 27.6ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-23 00:00:26 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (18.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 137ms (Views: 108.4ms | ActiveRecord: 1.2ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 00:00:29 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.1ms) Completed 200 OK in 60ms (Views: 32.9ms | ActiveRecord: 2.1ms) Started GET "/en/admin/page_template/new" for 127.0.0.1 at 2017-02-23 00:00:33 +0100 Processing by Cavy::AdminPageTemplatesController#new as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/new.html.erb within layouts/cavy/admin_layout (15.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 73ms (Views: 44.0ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-23 00:00:37 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 87ms (Views: 33.6ms | ActiveRecord: 1.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:00:57 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 115ms (Views: 34.5ms | ActiveRecord: 1.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:01:06 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (10.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.9ms) Completed 200 OK in 82ms (Views: 54.0ms | ActiveRecord: 2.4ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-02-23 00:01:34 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (8.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (15.0ms) Completed 200 OK in 104ms (Views: 61.3ms | ActiveRecord: 1.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-23 00:01:37 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 74ms (Views: 30.0ms | ActiveRecord: 1.0ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 00:01:40 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 67ms (Views: 30.1ms | ActiveRecord: 1.9ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-23 00:01:46 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 43ms (Views: 33.7ms | ActiveRecord: 1.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-23 00:02:15 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.3ms) Completed 200 OK in 122ms (Views: 65.3ms | ActiveRecord: 1.4ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 00:02:19 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 38ms (Views: 29.1ms | ActiveRecord: 1.7ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-23 00:02:21 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (6.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 42ms (Views: 32.2ms | ActiveRecord: 1.6ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:02:31 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (1.3ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 43ms (Views: 33.9ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:02:32 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (8.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 46ms (Views: 36.1ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:04:25 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (8.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.9ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.0ms) Completed 200 OK in 1155ms (Views: 1135.0ms | ActiveRecord: 2.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:05:41 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 69ms (Views: 29.5ms | ActiveRecord: 2.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:05:44 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (10.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 46ms (Views: 36.9ms | ActiveRecord: 2.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:06:34 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (13.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 172ms (Views: 160.5ms | ActiveRecord: 2.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:07:06 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (9.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 140ms (Views: 121.4ms | ActiveRecord: 3.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:07:55 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (25.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.3ms) Completed 200 OK in 121ms (Views: 102.2ms | ActiveRecord: 2.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:08:35 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (9.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 87ms (Views: 41.9ms | ActiveRecord: 2.3ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-02-23 00:09:33 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.1ms) Completed 200 OK in 42ms (Views: 29.2ms | ActiveRecord: 1.4ms) Started GET "/en/users/1/edit" for 127.0.0.1 at 2017-02-23 00:09:43 +0100 Processing by Cavy::UsersController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::User Load (15.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/_form.html.haml (23.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/edit.html.haml within layouts/cavy/admin_layout (40.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.5ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 117ms (Views: 71.0ms | ActiveRecord: 16.5ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 00:10:02 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 57ms (Views: 28.8ms | ActiveRecord: 2.2ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-23 00:10:08 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (7.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 64ms (Views: 35.3ms | ActiveRecord: 1.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:10:25 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 58ms (Views: 30.7ms | ActiveRecord: 2.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:10:30 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (9.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 77ms (Views: 36.7ms | ActiveRecord: 2.3ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-23 00:11:08 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 62ms (Views: 30.4ms | ActiveRecord: 1.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:11:12 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.8ms) Completed 200 OK in 45ms (Views: 37.0ms | ActiveRecord: 1.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:11:13 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 39ms (Views: 31.0ms | ActiveRecord: 1.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:11:21 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.2ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (3.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 35ms (Views: 27.4ms | ActiveRecord: 1.7ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 00:12:27 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 124ms (Views: 30.8ms | ActiveRecord: 2.2ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-23 00:12:35 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.8ms) Completed 200 OK in 53ms (Views: 34.1ms | ActiveRecord: 1.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:13:14 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.3ms) Completed 200 OK in 80ms (Views: 29.3ms | ActiveRecord: 2.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:13:16 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 39ms (Views: 31.7ms | ActiveRecord: 2.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:13:17 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (9.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 69ms (Views: 35.0ms | ActiveRecord: 2.4ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-23 00:14:09 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.8ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.6ms) Completed 200 OK in 51ms (Views: 30.9ms | ActiveRecord: 1.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 00:14:13 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 39ms (Views: 31.1ms | ActiveRecord: 2.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 00:14:24 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (10.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (5.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.9ms) Completed 200 OK in 50ms (Views: 39.2ms | ActiveRecord: 2.4ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 00:14:27 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.4ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.3ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 60ms (Views: 36.3ms | ActiveRecord: 1.8ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-02-23 00:14:31 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (8.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.2ms) Completed 200 OK in 83ms (Views: 34.5ms | ActiveRecord: 1.6ms) Started GET "/" for 127.0.0.1 at 2017-02-23 08:06:53 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 30ms (ActiveRecord: 1.8ms) Started GET "/en/" for 127.0.0.1 at 2017-02-23 08:06:54 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (9.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (5.1ms) Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (3.3ms) Completed 200 OK in 231ms (Views: 206.0ms | ActiveRecord: 12.0ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-23 08:07:05 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (48.1ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.0ms) Completed 200 OK in 150ms (Views: 105.5ms | ActiveRecord: 1.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 08:07:08 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.3ms) Completed 200 OK in 86ms (Views: 35.3ms | ActiveRecord: 2.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-02-23 08:07:10 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (13.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (4.2ms) Completed 200 OK in 275ms (Views: 47.2ms | ActiveRecord: 3.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-02-23 08:41:40 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (13.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (17.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (21.9ms) Completed 200 OK in 327ms (Views: 229.5ms | ActiveRecord: 2.7ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-02-23 08:41:45 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (3.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.9ms) CACHE (0.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.5ms) Completed 200 OK in 72ms (Views: 37.3ms | ActiveRecord: 2.1ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-02-23 08:41:49 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.0ms) Completed 200 OK in 90ms (Views: 35.9ms | ActiveRecord: 4.6ms) Started GET "/en/admin" for 127.0.0.1 at 2017-02-23 08:41:53 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (3.9ms) Cavy::ItemSection Load (0.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (3.4ms) Completed 200 OK in 43ms (Views: 31.9ms | ActiveRecord: 1.1ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-02-23 08:41:59 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.3ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (15.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (4.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.4ms) Completed 200 OK in 106ms (Views: 39.5ms | ActiveRecord: 6.6ms) Started GET "/" for 127.0.0.1 at 2017-03-06 18:52:43 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (99.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 1953ms (ActiveRecord: 1288.1ms) Started GET "/en/" for 127.0.0.1 at 2017-03-06 18:52:55 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (443.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (88.4ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (147.0ms) Completed 200 OK in 5174ms (Views: 4459.3ms | ActiveRecord: 588.1ms) Started GET "/en/" for 127.0.0.1 at 2017-03-06 18:55:46 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (36.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (16.9ms) Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (6.7ms) Completed 200 OK in 1812ms (Views: 1379.6ms | ActiveRecord: 87.7ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-06 18:56:13 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.3ms) Cavy::ItemSection Load (14.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (36.1ms) Completed 200 OK in 226ms (Views: 180.2ms | ActiveRecord: 16.6ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-06 18:56:17 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (164.6ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (228.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (13.5ms) Completed 200 OK in 488ms (Views: 178.9ms | ActiveRecord: 173.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-06 18:56:19 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 124ms (Views: 88.0ms | ActiveRecord: 2.6ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-03-06 18:56:54 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.6ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (6.8ms) Completed 200 OK in 133ms (Views: 92.1ms | ActiveRecord: 1.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-06 18:56:56 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (11.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.1ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.2ms) Completed 200 OK in 112ms (Views: 87.9ms | ActiveRecord: 2.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 18:56:59 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (32.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (21.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (195.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 350ms (Views: 253.4ms | ActiveRecord: 56.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 19:41:53 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (34.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.1ms) Completed 200 OK in 268ms (Views: 221.7ms | ActiveRecord: 3.0ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-06 20:20:38 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (115.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (44.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (29.6ms) Completed 200 OK in 639ms (Views: 378.7ms | ActiveRecord: 17.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 20:20:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (131.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (43.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.3ms) Completed 200 OK in 321ms (Views: 148.0ms | ActiveRecord: 135.7ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-06 20:20:47 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.0ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (2.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (31.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 159ms (Views: 119.9ms | ActiveRecord: 6.6ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-06 20:59:16 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (2.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (42.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (77.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.3ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 1159ms (Views: 1026.9ms | ActiveRecord: 48.6ms) Started GET "/" for 127.0.0.1 at 2017-03-06 21:20:14 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 22ms (ActiveRecord: 1.2ms) Started GET "/en/" for 127.0.0.1 at 2017-03-06 21:20:14 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (5.9ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (6.5ms) Completed 200 OK in 226ms (Views: 195.7ms | ActiveRecord: 3.0ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-06 21:20:17 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.8ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.4ms) Completed 200 OK in 214ms (Views: 169.2ms | ActiveRecord: 3.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-06 21:20:20 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (1.0ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (32.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 150ms (Views: 104.9ms | ActiveRecord: 3.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 21:20:21 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (35.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (12.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.2ms) Completed 200 OK in 144ms (Views: 114.7ms | ActiveRecord: 3.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 21:20:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (11.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (45.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (43.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.0ms) Completed 200 OK in 239ms (Views: 130.7ms | ActiveRecord: 59.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 21:21:59 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (1.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (34.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 141ms (Views: 113.9ms | ActiveRecord: 3.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 21:22:35 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (40.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (18.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 197ms (Views: 164.7ms | ActiveRecord: 3.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:04:32 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (5.7ms) Completed 500 in 291ms (ActiveRecord: 2.8ms) SyntaxError - syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' pend='
^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:57: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' Page Data ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:67: unknown regexp options - dv /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:68: syntax error, unexpected '<'
^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:75: unknown regexp options - dv /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:76: syntax error, unexpected tCONSTANT, expecting ')' :cavy_page_template_id, 'Page Template' );@output_buffer.sa ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:78: syntax error, unexpected tIDENTIFIER, expecting ')' .label :route, class: 'control-label' );@output_buffer.safe_ ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:78: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' :route, class: 'control-label' );@output_buffer.safe_append= ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:79: syntax error, unexpected tIDENTIFIER, expecting ')' ext_field :route, class: 'form-control' );@output_buffer.saf ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:79: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' :route, class: 'form-control' );@output_buffer.safe_append= ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:81: syntax error, unexpected '<', expecting ')'
^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:83: syntax error, unexpected '<', expecting ')'
^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:91: unknown regexp options - dv /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:92: syntax error, unexpected '<' ^ /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:93: unknown regexp options - dv /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:96: unterminated string meets end of file /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:96: syntax error, unexpected end-of-input, expecting ')': /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:56:in `' actionview (5.0.2) lib/action_view/template.rb:310:in `compile' actionview (5.0.2) lib/action_view/template.rb:259:in `block (2 levels) in compile!' activesupport (5.0.2) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.2) lib/action_view/template.rb:356:in `instrument' actionview (5.0.2) lib/action_view/template.rb:258:in `block in compile!' actionview (5.0.2) lib/action_view/template.rb:246:in `compile!' actionview (5.0.2) lib/action_view/template.rb:158:in `block in render' activesupport (5.0.2) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.2) lib/action_view/template.rb:354:in `instrument' actionview (5.0.2) lib/action_view/template.rb:157:in `render' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (5.0.2) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.2) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.2) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.2) lib/action_view/rendering.rb:104:in `_render_template' actionpack (5.0.2) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.2) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.2) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.2) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:36:in `default_render' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/44baa37cb2ec6002/variables" for 127.0.0.1 at 2017-03-06 23:04:34 +0100 Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:05:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (3.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (3.2ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (122.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (20.3ms) Completed 200 OK in 373ms (Views: 309.3ms | ActiveRecord: 19.0ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:05:48 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I2pQvwVKVKoQtBOcvt7mwOnQTpzjCjfzkRtB4ux7CPDmZrVuLHISOAT2riq3kcpG4qSpQXPQRLdeTNeHglrSIg==", "page"=>{"title"=>"Home en", "page_elements"=>{"content"=>""}}, "foobar_en"=>"en", "foobar_de"=>"de", "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameter: page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.8ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (298.1ms) UPDATE "cavy_pages" SET "title" = $1, "page_elements" = $2 WHERE "cavy_pages"."id" = $3 [["title", "\"en\"=>\"Home en\""], ["page_elements", "{\"content_en\":\"\"}"], ["id", 1]]  (137.7ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 690ms (ActiveRecord: 440.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:05:48 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (38.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.7ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 157ms (Views: 130.0ms | ActiveRecord: 3.1ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-06 23:05:54 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (36.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 145ms (Views: 116.1ms | ActiveRecord: 3.8ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-06 23:05:59 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"iAwS8knv8uWPDXfpia5jtZPp/iSdagWLRoW3Ja6wQQBNAPcjYNe0d5tPyl+A4U8zmJ0Z+Q2wds+J0iFAwJGb0g==", "page"=>{"title"=>"Home de", "page_elements"=>{"content"=>""}}, "foobar_en"=>"en", "foobar_de"=>"de", "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameter: page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (1.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.6ms) UPDATE "cavy_pages" SET "title" = $1, "page_elements" = $2 WHERE "cavy_pages"."id" = $3 [["title", "\"en\"=>\"Home en\", \"de\"=>\"Home de\""], ["page_elements", "{\"content_en\":\"\",\"content_de\":\"\"}"], ["id", 1]]  (0.6ms) COMMIT  (0.6ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 84ms (ActiveRecord: 6.8ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-06 23:05:59 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.3ms) Cavy::PageTemplate Load (1.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (37.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.5ms) Completed 200 OK in 172ms (Views: 140.4ms | ActiveRecord: 3.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:06:04 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (33.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.5ms) Completed 200 OK in 140ms (Views: 109.8ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:08:04 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (29.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 135ms (Views: 108.1ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:08:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (31.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.8ms) Completed 200 OK in 137ms (Views: 110.2ms | ActiveRecord: 3.6ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-06 23:08:17 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (1.1ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (13.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.4ms) Completed 200 OK in 137ms (Views: 94.4ms | ActiveRecord: 3.6ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-03-06 23:08:39 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (8.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (23.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 334ms (Views: 107.8ms | ActiveRecord: 2.0ms) Started POST "/en/admin/page_templates/1/field" for 127.0.0.1 at 2017-03-06 23:08:47 +0100 Processing by Cavy::AdminPageTemplateFieldsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"kk3b0acV0C0gjXSVw8vvLW7JG84XbLbMYJ3vIa46NPFXQT4Aji2WvzTPySPKhMOrZb38E4e2xYivynlEwBvuIw==", "page_template"=>{"name"=>"string", "type"=>"STRING"}, "commit"=>"Add", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (37.0ms) UPDATE "cavy_page_templates" SET "fields" = $1, "updated_at" = $2 WHERE "cavy_page_templates"."id" = $3 [["fields", "\"content\"=>\"TEXT\", \"string\"=>\"STRING\""], ["updated_at", 2017-03-06 22:08:47 UTC], ["id", 1]]  (0.8ms) COMMIT Redirected to http://localhost:3000/en/admin/page_template/1 Completed 302 Found in 90ms (ActiveRecord: 40.5ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-03-06 23:08:47 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (7.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (23.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.4ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 140ms (Views: 113.2ms | ActiveRecord: 2.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-06 23:08:49 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (20.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 233ms (Views: 192.5ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:08:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.4ms) Completed 200 OK in 207ms (Views: 133.9ms | ActiveRecord: 3.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:10:53 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (5.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (1.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (63524.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (68.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (2.7ms) Completed 200 OK in 64468ms (Views: 64339.0ms | ActiveRecord: 8.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:19:18 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (53.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (12758.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (37.3ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (43.0ms) Completed 200 OK in 14438ms (Views: 13844.5ms | ActiveRecord: 90.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:19:48 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (84.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (20.6ms) Completed 200 OK in 360ms (Views: 194.9ms | ActiveRecord: 3.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:21:21 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (37.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 147ms (Views: 113.0ms | ActiveRecord: 5.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:24:49 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (4.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (3.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (62.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.7ms) Completed 200 OK in 233ms (Views: 177.6ms | ActiveRecord: 7.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:25:27 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (34.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (5.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (4.3ms) Cavy::PageTemplate Load (2.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (87.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.7ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.1ms) Completed 200 OK in 318ms (Views: 240.1ms | ActiveRecord: 44.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:26:10 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (77.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (18.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (20.6ms) Completed 200 OK in 338ms (Views: 204.7ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:26:29 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (38.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 140ms (Views: 112.6ms | ActiveRecord: 3.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:26:59 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.4ms) Cavy::PageTemplate Load (1.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (43.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.9ms) Completed 200 OK in 284ms (Views: 255.8ms | ActiveRecord: 4.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:29:15 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (18.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (138.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (159.7ms) Completed 500 in 214ms (ActiveRecord: 21.5ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) NameError - undefined local variable or method `id' for #<#:0x007fd08f819f90>: /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb:11:in `block in ___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_pages__page_localized_field_html_erb__2670264602286651684_70266861685480' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb:9:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_pages__page_localized_field_html_erb__2670264602286651684_70266861685480' actionview (5.0.2) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.2) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.2) lib/action_view/template.rb:354:in `instrument' actionview (5.0.2) lib/action_view/template.rb:157:in `render' actionview (5.0.2) lib/action_view/renderer/partial_renderer.rb:343:in `render_partial' actionview (5.0.2) lib/action_view/renderer/partial_renderer.rb:311:in `block in render' actionview (5.0.2) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.2) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.2) lib/action_view/renderer/partial_renderer.rb:310:in `render' actionview (5.0.2) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (5.0.2) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:12:in `render_with_haml' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:49:in `block (2 levels) in ___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_pages_edit_html_erb___4053711882944166336_70266868783580' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:39:in `block in ___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_pages_edit_html_erb___4053711882944166336_70266868783580' actionview (5.0.2) lib/action_view/helpers/capture_helper.rb:39:in `block in capture' actionview (5.0.2) lib/action_view/helpers/capture_helper.rb:203:in `with_output_buffer' haml (4.0.7) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (5.0.2) lib/action_view/helpers/capture_helper.rb:39:in `capture' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (5.0.2) lib/action_view/helpers/form_helper.rb:450:in `form_for' haml (4.0.7) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.7) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb:31:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_cavy_admin_pages_edit_html_erb___4053711882944166336_70266868783580' actionview (5.0.2) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.2) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.2) lib/action_view/template.rb:354:in `instrument' actionview (5.0.2) lib/action_view/template.rb:157:in `render' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (5.0.2) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionview (5.0.2) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.2) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.2) lib/action_view/rendering.rb:104:in `_render_template' actionpack (5.0.2) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.2) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.2) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.2) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (5.0.2) lib/action_controller/metal/implicit_render.rb:36:in `default_render' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/bed4a004a25423b1/variables" for 127.0.0.1 at 2017-03-06 23:29:15 +0100 Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:30:40 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (40.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 145ms (Views: 118.8ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:36:28 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (4.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (1.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (3.3ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (52.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.7ms) Completed 200 OK in 190ms (Views: 138.0ms | ActiveRecord: 9.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:37:12 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (1.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (47.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.9ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 168ms (Views: 140.3ms | ActiveRecord: 4.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:37:46 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (39.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.1ms) Completed 200 OK in 151ms (Views: 124.4ms | ActiveRecord: 2.9ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:39:13 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8y2rjjOem9Qjw6xjk4L/kBRoKbHk3hR1Pdj4d43JzRE2IU5fGqbdRjeBEdWazdMWHxzObHQEZzHyj24S4+gXww==", "page"=>{"title"=>"Home en", "page_elements"=>{"string"=>{"_en"=>"en", "_de"=>"de", "_wk"=>"wk"}, "content"=>""}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameter: page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (24.1ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":null}"], ["id", 1]]  (32.2ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 42755ms (ActiveRecord: 61.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:40:55 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (58.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (241.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (16.2ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (18.6ms) Completed 200 OK in 1453ms (Views: 1054.8ms | ActiveRecord: 76.4ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:41:01 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LVv2m+bdmbzvxSQzjTKW4OKiA/ZMEC1jP5XeUTsNLfHoVxNKz+XfLvuHmYWEfbpm6dbkK9zKXifwwkg0VSz3Iw==", "page"=>{"title"=>"Home en", "page_elements"=>{"string"=>{"en"=>"en", "de"=>"de", "wk"=>"wk"}, "content"=>""}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameter: page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT  (0.1ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 17132ms (ActiveRecord: 5.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:46:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (41.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (264.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.5ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (19.5ms) Completed 200 OK in 1416ms (Views: 1049.6ms | ActiveRecord: 58.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:48:56 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (2.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (5.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (102.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.0ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.9ms) Completed 200 OK in 254ms (Views: 211.8ms | ActiveRecord: 6.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:49:43 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (6.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (67.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 307ms (Views: 245.7ms | ActiveRecord: 11.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:54:31 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (62.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.8ms) Completed 200 OK in 353ms (Views: 314.1ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:54:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (12.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (44.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 167ms (Views: 127.3ms | ActiveRecord: 14.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:56:30 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (48.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (12.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (20.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.1ms) Completed 200 OK in 191ms (Views: 155.4ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:56:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (17.3ms) Completed 200 OK in 186ms (Views: 147.1ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:56:50 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.0ms) Completed 200 OK in 165ms (Views: 136.3ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:58:07 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (16.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (44.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.1ms) Completed 200 OK in 263ms (Views: 213.7ms | ActiveRecord: 20.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:58:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (26.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (47.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (20.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 281ms (Views: 216.3ms | ActiveRecord: 30.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:59:10 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.1ms) Cavy::PageTemplate Load (2.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (76.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.9ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (18.8ms) Completed 200 OK in 285ms (Views: 254.4ms | ActiveRecord: 5.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-06 23:59:26 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (5.0ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (62.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.8ms) Completed 200 OK in 260ms (Views: 232.4ms | ActiveRecord: 2.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:00:06 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (64.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.9ms) Completed 200 OK in 364ms (Views: 326.3ms | ActiveRecord: 3.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:01:09 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (73.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 345ms (Views: 309.8ms | ActiveRecord: 3.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:02:44 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (75.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 376ms (Views: 308.2ms | ActiveRecord: 2.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:03:38 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (2.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.9ms) Cavy::PageTemplate Load (16.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (123.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (55.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (12.9ms) Completed 200 OK in 999ms (Views: 933.4ms | ActiveRecord: 21.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:03:44 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (46.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 160ms (Views: 132.1ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:04:50 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (44.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 222ms (Views: 194.3ms | ActiveRecord: 2.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:06:12 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 218ms (Views: 183.1ms | ActiveRecord: 3.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:06:44 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (45.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.1ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (12.5ms) Completed 200 OK in 200ms (Views: 171.8ms | ActiveRecord: 3.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:07:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.1ms) Cavy::ItemSection Load (6.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (14.8ms) Completed 200 OK in 231ms (Views: 196.8ms | ActiveRecord: 8.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:11:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (42.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.8ms) Completed 200 OK in 353ms (Views: 317.1ms | ActiveRecord: 2.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:11:46 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (44.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 297ms (Views: 252.4ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:13:38 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (50.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.4ms) Completed 200 OK in 428ms (Views: 395.8ms | ActiveRecord: 3.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:13:53 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.1ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (47.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 193ms (Views: 165.3ms | ActiveRecord: 3.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:15:21 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (5.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (67.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.5ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.7ms) Completed 200 OK in 249ms (Views: 202.4ms | ActiveRecord: 8.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:15:43 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (44.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (23.0ms) Completed 200 OK in 219ms (Views: 191.9ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:16:14 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (61.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.0ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.6ms) Completed 200 OK in 256ms (Views: 209.1ms | ActiveRecord: 4.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:16:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (52.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.2ms) Completed 200 OK in 235ms (Views: 202.0ms | ActiveRecord: 3.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:17:04 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (53.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.7ms) Completed 200 OK in 241ms (Views: 205.6ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:17:53 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (49.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (12.5ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (17.5ms) Completed 200 OK in 223ms (Views: 193.9ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 00:18:16 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (47.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.5ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.9ms) Completed 200 OK in 166ms (Views: 138.3ms | ActiveRecord: 3.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 07:45:41 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (69.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.3ms) Completed 200 OK in 521ms (Views: 481.0ms | ActiveRecord: 4.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 07:47:40 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (47.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 162ms (Views: 132.3ms | ActiveRecord: 3.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 07:50:46 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (60.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.7ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.1ms) Completed 200 OK in 260ms (Views: 224.4ms | ActiveRecord: 3.6ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 07:50:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (48.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 197ms (Views: 139.4ms | ActiveRecord: 3.1ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:09:46 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (2.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (90.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 349ms (Views: 297.7ms | ActiveRecord: 5.4ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:10:04 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (48.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.2ms) Completed 200 OK in 164ms (Views: 135.9ms | ActiveRecord: 3.4ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:10:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (124.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (28.0ms) Completed 200 OK in 483ms (Views: 241.4ms | ActiveRecord: 22.7ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:12:35 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (5.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (97.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (15.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (14.8ms) Completed 200 OK in 412ms (Views: 202.1ms | ActiveRecord: 7.7ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:12:55 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (48.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 170ms (Views: 136.9ms | ActiveRecord: 3.1ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:13:35 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.8ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (92.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (17.7ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (16.3ms) Completed 200 OK in 347ms (Views: 202.6ms | ActiveRecord: 3.5ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:14:49 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"J1dTrVmY15EyRdWIyeofbscGWz+bHPiBLNv3sRVqPpjiW7Z8cKCRAyYHaD7ApTPozHK84gvGi8XjjGHUe0vkSg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"Home de", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.9ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.6ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":null,\"string_en\":null,\"string_de\":null}"], ["id", 1]]  (117.1ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 88026ms (ActiveRecord: 121.6ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:16:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (84.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.4ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (305.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (35.1ms) Cavy::ItemSection Load (1.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (37.0ms) Completed 200 OK in 1797ms (Views: 1266.6ms | ActiveRecord: 104.2ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:17:00 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"dY6Avl0ioEjphpLGIu+3cWV1s4ZeYeqHkNK1vA7NxBywgmVvdBrm2v3EL3AroJv3bgFUW867mcNfhSPZYOwezg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"Home de", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 18073ms (ActiveRecord: 4.3ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:17:56 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (2.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (132.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (13.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (21.5ms) Completed 200 OK in 986ms (Views: 697.2ms | ActiveRecord: 24.3ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:17:58 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (56.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (12.9ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.2ms) Completed 200 OK in 203ms (Views: 165.9ms | ActiveRecord: 5.2ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:18:02 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Xq+BRD9V9/CZBUQyWuzQY90KSZOweTuQVc6Iu7RRnQqbo2SVFm2xYo1H+YRTo/zl1n6uTiCjSNSamR7e2nBH2A==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"Home de", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (16.5ms) UPDATE "cavy_pages" SET "title" = $1 WHERE "cavy_pages"."id" = $2 [["title", "\"de\"=>\"{\\\"en\\\"=>\\\"Home en\\\", \\\"de\\\"=>\\\"Home de\\\", \\\"wk\\\"=>\\\"\\\"}\", \"en\"=>\"Home en\""], ["id", 1]]  (0.6ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 15327ms (ActiveRecord: 21.3ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:21:14 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (19.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (144.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (15.0ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (25.9ms) Completed 200 OK in 995ms (Views: 726.6ms | ActiveRecord: 35.8ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:22:48 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4H+ebHmRgJ9XnL/LlxbtaDxiFuU6imvK7Heo93LSKvAlc3u9UKnGDUPeAn2eWcHuNxbxOKpQGI4jID6SHPPwIg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (41.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.6ms) UPDATE "cavy_pages" SET "title" = $1 WHERE "cavy_pages"."id" = $2 [["title", "\"en\"=>\"Home en\", \"de\"=>\"foo\", \"wk\"=>\"\""], ["id", 1]]  (41.2ms) COMMIT Completed 500 in 105729ms (ActiveRecord: 97.6ms) ArgumentError - wrong number of arguments (given 1, expected 0): activerecord (5.0.2) lib/active_record/attribute_methods/read.rb:34:in `__temp__479647c656' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:48:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `public_send' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:24:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (2.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (260.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.0ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (33.7ms) Completed 200 OK in 1647ms (Views: 1209.0ms | ActiveRecord: 22.2ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:30:26 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"OX9nc4loKIfYwHhOREMumFXP8Zcicwfpsz4x2L0F95H8c4KioFBuFcyCxfhNDAIeXrsWSrKpdK18aae90yQtQw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Completed 500 in 44ms (ActiveRecord: 1.8ms) ArgumentError - wrong number of arguments (given 1, expected 0): activerecord (5.0.2) lib/active_record/attribute_methods/read.rb:34:in `__temp__479647c656' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:48:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `public_send' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/ab3b29e47c495b34/variables" for 127.0.0.1 at 2017-03-07 08:30:27 +0100 Started POST "/__better_errors/ab3b29e47c495b34/variables" for 127.0.0.1 at 2017-03-07 08:30:31 +0100 Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:30:55 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"OX9nc4loKIfYwHhOREMumFXP8Zcicwfpsz4x2L0F95H8c4KioFBuFcyCxfhNDAIeXrsWSrKpdK18aae90yQtQw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.1ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 68708ms (ActiveRecord: 13.1ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:34:25 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (42.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (17.1ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.8ms) Cavy::PageTemplate Load (1.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (414.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (54.3ms) Completed 200 OK in 2673ms (Views: 2205.5ms | ActiveRecord: 62.1ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:35:04 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"selsmpUAaQ0pGu0NLo4I9NmJUTV/j8y1zWqPVAc/sg105YlLvDgvnz1YULsnwSRy0v226O9Vv/ECPRkxaR5o3w==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.7ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 35317ms (ActiveRecord: 4.4ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:36:29 +0100 Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:36:29 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (3.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 HABTM_CavyGroups Load (5.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (42.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::Page Load (54.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.1ms) Cavy::PageTemplate Load (1.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.0ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (0.8ms) Cavy::PageTemplate Load (1.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Cavy::PageTemplate Load (6.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (502.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (612.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (38.3ms) Cavy::ItemSection Load (1.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Cavy::ItemSection Load (3.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (59.7ms) Completed 200 OK in 2640ms (Views: 1945.0ms | ActiveRecord: 120.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (66.3ms) Completed 200 OK in 2654ms (Views: 1963.0ms | ActiveRecord: 107.2ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:36:37 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DvCGsgqZk8H7OQBB+VuFUE949GCiM1KWj/xaaIFjLlzL/GNjI6HVU+97vffwFKnWRAwTvTLpIdJAq8wN70L0jg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT  (0.1ms) BEGIN Cavy::Page Exists (0.3ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 14648ms (ActiveRecord: 3.8ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:37:46 +0100 Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:37:47 +0100 Processing by Cavy::AdminPagesController#edit as HTML Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (2.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] Cavy::User Load (3.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 HABTM_CavyGroups Load (5.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (15.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::Page Load (42.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (1.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (0.8ms) Cavy::PageTemplate Load (1.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Cavy::PageTemplate Load (6.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (256.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (368.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (3.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (6.6ms) Cavy::ItemSection Load (1.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Cavy::ItemSection Load (1.3ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (64.6ms) Completed 200 OK in 1787ms (Views: 1315.5ms | ActiveRecord: 100.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (58.6ms) Completed 200 OK in 1797ms (Views: 1328.3ms | ActiveRecord: 81.9ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:37:52 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TUz7Ya1bBDcsvHJS1IiXF3B0E6M0nCx2JzZqJia5mTaIQB6whGNCpTj+z+Tdx7uRewD0fqRGXzLoYfxDSJhD5A==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Completed 500 in 6034ms (ActiveRecord: 1.7ms) TypeError - no implicit conversion of Symbol into String: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:101:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:100:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:98:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:49:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/250e6155419d65ad/variables" for 127.0.0.1 at 2017-03-07 08:38:03 +0100 Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:02 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TUz7Ya1bBDcsvHJS1IiXF3B0E6M0nCx2JzZqJia5mTaIQB6whGNCpTj+z+Tdx7uRewD0fqRGXzLoYfxDSJhD5A==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (61.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.7ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"\",\"string_wk\":\"\",\"content_wk\":\"\"}"], ["id", 1]]  (34.0ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.9ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 734ms (ActiveRecord: 114.4ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:05 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (111.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (17.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (29.8ms) Completed 200 OK in 716ms (Views: 688.4ms | ActiveRecord: 4.8ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:10 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CXzKUV2evLU4/p+CoEOS5seg3kofuSGNeTZ04hWH5TfMcC+AdKb6Jyy8IjSpDL5gzNQ5l49jUsm2YeKHe6Y/5Q==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.7ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 105ms (ActiveRecord: 5.2ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:10 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.9ms) Cavy::PageTemplate Load (1.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (57.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 173ms (Views: 144.6ms | ActiveRecord: 3.8ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:24 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jTE2Uu80cWmSdqTIm/AdhCAlrRYZF2RML242h9un2uBIPdODxgw3+4Y0GX6SvzECK1FKy4nNFwjgOaDitYYAMg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (1.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (1.0ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.6ms) COMMIT  (0.5ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 19120ms (ActiveRecord: 7.7ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:43 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.1ms) Completed 200 OK in 182ms (Views: 144.3ms | ActiveRecord: 3.0ms) Started PUT "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:51 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4IrONCs7VP9IfB+320Zx1pwT2YvaHBGaeZJRjbW5Ed4lhivlAgMSbVw+ogHSCV1Ql2c+VkrGYt62xcfo25jLDA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"de", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.6ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\"}"], ["id", 1]]  (0.7ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/de/admin/page/1 Completed 302 Found in 2691ms (ActiveRecord: 5.9ms) Started GET "/de/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:54 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"de", "id"=>"1"} Cavy::User Load (1.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (55.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.8ms) Completed 200 OK in 206ms (Views: 161.2ms | ActiveRecord: 4.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-07 08:39:59 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (1.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (50.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.9ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.1ms) Completed 200 OK in 160ms (Views: 131.0ms | ActiveRecord: 3.8ms) Started GET "/" for 127.0.0.1 at 2017-03-08 08:04:30 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 410ms (ActiveRecord: 50.5ms) Started GET "/en/" for 127.0.0.1 at 2017-03-08 08:04:33 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (85.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (38.0ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (7.7ms) Completed 200 OK in 1250ms (Views: 1034.7ms | ActiveRecord: 89.6ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-08 08:04:40 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.9ms) Cavy::ItemSection Load (41.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (60.1ms) Completed 200 OK in 225ms (Views: 152.1ms | ActiveRecord: 44.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-08 08:04:43 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (11.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (17.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 186ms (Views: 139.3ms | ActiveRecord: 2.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-08 08:04:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.3ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (5.9ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (334.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 475ms (Views: 421.3ms | ActiveRecord: 6.0ms) Started GET "/en/admin/users" for 127.0.0.1 at 2017-03-08 08:32:47 +0100 Processing by Cavy::UsersController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/users/index.html.haml within layouts/cavy/admin_layout (18.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 284ms (Views: 245.4ms | ActiveRecord: 2.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-08 08:32:50 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 119ms (Views: 82.7ms | ActiveRecord: 1.6ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-08 08:32:52 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (13.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 143ms (Views: 99.4ms | ActiveRecord: 2.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-08 08:32:54 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (10.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.6ms) Completed 200 OK in 122ms (Views: 88.7ms | ActiveRecord: 2.4ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-03-08 08:32:58 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 122ms (Views: 82.5ms | ActiveRecord: 1.6ms) Started GET "/en/admin/item_group" for 127.0.0.1 at 2017-03-08 08:33:01 +0100 Processing by Cavy::ItemGroupsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout  (41.0ms) SELECT COUNT(*) FROM "cavy_item_groups" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_groups/index.html.erb within layouts/cavy/admin_layout (70.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.4ms) Completed 200 OK in 225ms (Views: 112.6ms | ActiveRecord: 44.6ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-08 08:33:04 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (11.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 120ms (Views: 96.5ms | ActiveRecord: 2.5ms) Started GET "/" for 127.0.0.1 at 2017-03-10 08:30:52 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (24.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (41.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 644ms (ActiveRecord: 235.3ms) Started GET "/en/" for 127.0.0.1 at 2017-03-10 08:30:56 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (200.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (77.9ms) Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (16.4ms) Completed 200 OK in 1961ms (Views: 1641.7ms | ActiveRecord: 226.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-10 08:31:09 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (45.0ms) Cavy::ItemSection Load (1.0ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (25.8ms) Completed 200 OK in 245ms (Views: 193.2ms | ActiveRecord: 3.0ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-10 08:31:13 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.9ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (1.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (16.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.8ms) Completed 200 OK in 135ms (Views: 96.9ms | ActiveRecord: 4.9ms) Started GET "/en/" for 127.0.0.1 at 2017-03-10 08:32:37 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (31.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (20530.7ms) Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (14.0ms) Completed 200 OK in 20772ms (Views: 20702.6ms | ActiveRecord: 34.6ms) Started GET "/en/" for 127.0.0.1 at 2017-03-10 08:33:19 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (3595.3ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (15.4ms) Completed 200 OK in 3855ms (Views: 3817.9ms | ActiveRecord: 2.6ms) Started GET "/en/" for 127.0.0.1 at 2017-03-10 08:34:25 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (6.4ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (7.8ms) Completed 200 OK in 198ms (Views: 165.7ms | ActiveRecord: 2.0ms) Started GET "/en/edit" for 127.0.0.1 at 2017-03-10 08:35:05 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en", "route"=>"edit"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "edit"], ["LIMIT", 1]] Completed 500 in 233ms (ActiveRecord: 1.6ms) ActionController::RoutingError - Not Found: /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:30:in `not_found' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:38:in `get_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:34:in `set_page' activesupport (5.0.2) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.2) lib/active_support/callbacks.rb:150:in `block (2 levels) in halting_and_conditional' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.2) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (5.0.2) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/7844519e11d34aa1/variables" for 127.0.0.1 at 2017-03-10 08:35:08 +0100 Started GET "/en/edit" for 127.0.0.1 at 2017-03-10 08:35:19 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en", "route"=>"edit"} Cavy::User Load (1.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "edit"], ["LIMIT", 1]] Completed 500 in 32ms (ActiveRecord: 3.3ms) ActionController::RoutingError - Not Found: /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:30:in `not_found' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:38:in `get_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:34:in `set_page' activesupport (5.0.2) lib/active_support/callbacks.rb:382:in `block in make_lambda' activesupport (5.0.2) lib/active_support/callbacks.rb:150:in `block (2 levels) in halting_and_conditional' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in ' activesupport (5.0.2) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (5.0.2) lib/active_support/callbacks.rb:454:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:454:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/ab4f2010634c525c/variables" for 127.0.0.1 at 2017-03-10 08:35:20 +0100 Started GET "/en/edit/home" for 127.0.0.1 at 2017-03-10 08:35:47 +0100 Processing by Cavy::PagesController#edit as HTML Parameters: {"locale"=>"en", "route"=>"home"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (7.0ms) Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (6.7ms) Completed 200 OK in 258ms (Views: 233.3ms | ActiveRecord: 2.0ms) Started GET "/en/cavy_update/1" for 127.0.0.1 at 2017-03-10 08:35:58 +0100 ActionController::RoutingError (No route matches [GET] "/en/cavy_update/1"): actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (210.1ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [58 times] (60.1ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (104.5ms) Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (616.9ms) Started GET "/" for 127.0.0.1 at 2017-03-10 22:59:58 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (30.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (40.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 585ms (ActiveRecord: 131.5ms) Started GET "/en/" for 127.0.0.1 at 2017-03-10 23:00:01 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (131.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (51.3ms) Completed 500 in 1693ms (ActiveRecord: 136.0ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) NoMethodError - undefined method `seo_description' for # Did you mean? description: activemodel (5.0.2) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/thomasmuntaner/Projects/Websites/cavy/lib/cavy/helpers/view_helpers.rb:46:in `meta_tags' /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/application.html.erb:14:in `___sers_thomasmuntaner__rojects__ebsites_cavy_app_views_layouts_cavy_application_html_erb___4050124056647232981_70363046592440' actionview (5.0.2) lib/action_view/template.rb:159:in `block in render' activesupport (5.0.2) lib/active_support/notifications.rb:166:in `instrument' actionview (5.0.2) lib/action_view/template.rb:354:in `instrument' actionview (5.0.2) lib/action_view/template.rb:157:in `render' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (5.0.2) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (5.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (5.0.2) lib/action_view/renderer/renderer.rb:23:in `render' actionview (5.0.2) lib/action_view/rendering.rb:104:in `_render_template' actionpack (5.0.2) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (5.0.2) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:52:in `render_to_body' actionpack (5.0.2) lib/action_controller/metal/renderers.rb:142:in `render_to_body' actionpack (5.0.2) lib/abstract_controller/rendering.rb:26:in `render' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:36:in `render' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (5.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/benchmark.rb:308:in `realtime' activesupport (5.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:43:in `render' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:9:in `page' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/4d67907fb5e00797/variables" for 127.0.0.1 at 2017-03-10 23:00:03 +0100  (51.1ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (59.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CleanupPages (20170309163124)  (0.3ms) BEGIN  (87.2ms) ALTER TABLE "cavy_pages" DROP "description"  (12.0ms) ALTER TABLE "cavy_pages" DROP "tags"  (30.0ms) ALTER TABLE "cavy_pages" DROP "content"  (1.0ms) ALTER TABLE "cavy_pages" ADD "seo_description" hstore  (14.6ms) ALTER TABLE "cavy_pages" ADD "seo_keywords" jsonb SQL (15.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170309163124"]]  (0.8ms) COMMIT ActiveRecord::InternalMetadata Load (92.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN  (0.2ms) COMMIT  (0.4ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/en/" for 127.0.0.1 at 2017-03-10 23:02:33 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (59.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (29.2ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (29.8ms) Completed 200 OK in 1408ms (Views: 962.1ms | ActiveRecord: 70.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-10 23:02:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Cavy::PageTemplate Load (19.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.0ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (296.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.3ms) Cavy::ItemSection Load (1.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (34.9ms) Completed 200 OK in 497ms (Views: 443.4ms | ActiveRecord: 26.3ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-10 23:03:00 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (13.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 121ms (Views: 97.2ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-03-10 23:03:03 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (8.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (23.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 176ms (Views: 106.8ms | ActiveRecord: 2.1ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-03-10 23:05:47 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (9.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (27.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (29.7ms) Completed 200 OK in 507ms (Views: 271.9ms | ActiveRecord: 10.2ms) Started POST "/en/admin/page_templates/1/field" for 127.0.0.1 at 2017-03-10 23:05:54 +0100 Processing by Cavy::AdminPageTemplateFieldsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rA8z3tB4bN3RXemIa2aWVxCn8bfSqJF2znlXVCYGCHRpA9YP+UAqT8UfVD5iKbrRG9MWakJy4jIBLsExSCfSpg==", "page_template"=>{"name"=>"picture", "type"=>"PICTURE"}, "commit"=>"Add", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (98.4ms) UPDATE "cavy_page_templates" SET "fields" = $1, "updated_at" = $2 WHERE "cavy_page_templates"."id" = $3 [["fields", "\"string\"=>\"STRING\", \"content\"=>\"TEXT\", \"picture\"=>\"PICTURE\""], ["updated_at", 2017-03-10 22:05:55 UTC], ["id", 1]]  (0.8ms) COMMIT Redirected to http://localhost:3000/en/admin/page_template/1 Completed 302 Found in 150ms (ActiveRecord: 101.0ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-03-10 23:05:55 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (1.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (8.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (28.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.0ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 160ms (Views: 130.5ms | ActiveRecord: 4.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-10 23:06:05 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (39.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.7ms) Completed 200 OK in 161ms (Views: 114.9ms | ActiveRecord: 8.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-10 23:06:08 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (87.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 237ms (Views: 172.5ms | ActiveRecord: 3.0ms) Started GET "/" for 127.0.0.1 at 2017-03-11 09:59:25 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (2.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 947ms (ActiveRecord: 3.7ms) Started GET "/en/" for 127.0.0.1 at 2017-03-11 09:59:28 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (14.5ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (112.5ms) Completed 200 OK in 1852ms (Views: 1784.7ms | ActiveRecord: 2.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-11 09:59:41 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (41.4ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (12.1ms) Completed 200 OK in 633ms (Views: 504.7ms | ActiveRecord: 1.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-11 10:07:14 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (124.2ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (335.3ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (472.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (40.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 1373ms (Views: 850.9ms | ActiveRecord: 461.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 10:07:22 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (81.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.1ms) Cavy::PageTemplate Load (1.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (280.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (52.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.4ms) Completed 200 OK in 1553ms (Views: 1155.4ms | ActiveRecord: 258.5ms) Started GET "/" for 127.0.0.1 at 2017-03-11 11:19:38 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 72ms (ActiveRecord: 1.6ms) Started GET "/en/" for 127.0.0.1 at 2017-03-11 11:19:39 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (15.8ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (11.0ms) Completed 200 OK in 986ms (Views: 955.9ms | ActiveRecord: 2.8ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-11 11:19:45 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.5ms) Completed 200 OK in 526ms (Views: 459.9ms | ActiveRecord: 2.2ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-11 11:19:51 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (13.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (41.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.1ms) Completed 200 OK in 503ms (Views: 454.2ms | ActiveRecord: 2.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 11:19:53 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.6ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (141.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 329ms (Views: 227.6ms | ActiveRecord: 3.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 11:23:37 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.5ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.2ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (186.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.6ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 548ms (Views: 488.9ms | ActiveRecord: 5.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 11:25:45 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (2.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (101.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (77.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (42.8ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 1095ms (Views: 946.8ms | ActiveRecord: 105.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 11:34:05 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.1ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (89.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 572ms (Views: 524.7ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:32:01 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (2.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (63.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.0ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (217.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.5ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.9ms) Completed 200 OK in 913ms (Views: 726.2ms | ActiveRecord: 68.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:32:25 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.6ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (83.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.9ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.2ms) Completed 200 OK in 496ms (Views: 466.5ms | ActiveRecord: 4.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:32:48 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (92.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.1ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 482ms (Views: 435.1ms | ActiveRecord: 3.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:33:01 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.6ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (53.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.5ms) Completed 200 OK in 217ms (Views: 190.4ms | ActiveRecord: 3.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:34:23 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (56.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.1ms) Completed 200 OK in 243ms (Views: 215.9ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:34:48 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (51.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 240ms (Views: 211.2ms | ActiveRecord: 2.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:35:36 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.4ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (59.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.9ms) Completed 200 OK in 278ms (Views: 246.8ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:35:52 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.2ms) Cavy::PageTemplate Load (1.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (151.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (29.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.8ms) Completed 200 OK in 630ms (Views: 562.1ms | ActiveRecord: 3.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:36:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (3.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.1ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (66.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.9ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.4ms) Completed 200 OK in 251ms (Views: 221.6ms | ActiveRecord: 5.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:37:29 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (52.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.1ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 242ms (Views: 214.6ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:37:52 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.8ms) Cavy::PageTemplate Load (1.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (65.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.7ms) Completed 200 OK in 252ms (Views: 222.7ms | ActiveRecord: 4.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:38:37 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.8ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (71.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.7ms) Completed 200 OK in 266ms (Views: 236.7ms | ActiveRecord: 4.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:38:49 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (14.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (7.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (71.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 242ms (Views: 216.7ms | ActiveRecord: 2.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:39:04 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.4ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (67.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.9ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 255ms (Views: 226.1ms | ActiveRecord: 3.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:39:40 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (49.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.0ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 217ms (Views: 191.6ms | ActiveRecord: 2.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:40:18 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (50.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.4ms) Completed 200 OK in 154ms (Views: 126.4ms | ActiveRecord: 2.7ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:42:12 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"QFjg7iGz/Hvg04TwzPFjjzXTjWkbrLILGH3cIE2un/aFVAU/CIu66fSROUbFvk8JPqdqtIt2wU/XKkpFI49FJA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>"20161012-stadtanzeiger.jpg", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.3ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (212.2ms) UPDATE "cavy_pages" SET "page_elements" = $1, "seo_keywords" = $2, "seo_description" = $3 WHERE "cavy_pages"."id" = $4 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"20161012-stadtanzeiger.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["seo_keywords", "{}"], ["seo_description", ""], ["id", 1]]  (85.4ms) COMMIT  (0.4ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 1825ms (ActiveRecord: 303.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:42:14 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (94.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.1ms) Completed 200 OK in 416ms (Views: 348.4ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 15:42:15 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 30ms (ActiveRecord: 1.9ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/" for 127.0.0.1 at 2017-03-11 15:50:48 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 73ms (ActiveRecord: 1.2ms) Started GET "/en/" for 127.0.0.1 at 2017-03-11 15:50:49 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (4.9ms) Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (7.4ms) Completed 200 OK in 363ms (Views: 338.2ms | ActiveRecord: 2.4ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-11 15:50:53 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (30.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.7ms) Completed 200 OK in 221ms (Views: 145.1ms | ActiveRecord: 1.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-11 15:50:56 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 143ms (Views: 104.0ms | ActiveRecord: 2.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:50:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.7ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (123.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.9ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 263ms (Views: 220.4ms | ActiveRecord: 3.6ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 15:50:58 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (5.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 59ms (ActiveRecord: 6.7ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:51:05 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/Rq7svLnxDqXz8jbi8gyv+4C/6W7TgxOKsBUkrGh7U04Fl5j29+CqIONdW2Chx455XYYeCuUfwrll8L334A3nw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>"20161012-stadtanzeiger.jpg", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements  (0.4ms) BEGIN Cavy::Page Exists (0.9ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 352084ms (ActiveRecord: 5.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:56:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (9.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (107.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (30.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 406ms (Views: 358.2ms | ActiveRecord: 3.0ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 15:56:58 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (7.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (8.0ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 77ms (ActiveRecord: 16.5ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 15:56:58 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (6.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (56.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 125ms (ActiveRecord: 63.3ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 15:58:46 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1zCID1n3N00+hy3v3IlqFRSlaAiVwpoql6DkxYqsBP0SPG3ecM9x3yrFkFnVxkaTH9GP1QUY6W5Y93Kg5I3eLw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>"20161012-stadtanzeiger.jpg", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 609732ms (ActiveRecord: 4.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:08:56 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (6.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.4ms) Cavy::PageTemplate Load (2.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (236.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (27.8ms) Completed 200 OK in 845ms (Views: 618.7ms | ActiveRecord: 10.6ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:08:59 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 30ms (ActiveRecord: 2.1ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:08:59 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (1.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (6.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 46ms (ActiveRecord: 8.0ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:09:05 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3KCZOcNwiyquPUxgaxHaPA7zVb2pdrY8ENFXqXECa0oZrHzo6kjNuLp/8dZiXva6BYeyYDmsxXjfhsHMHyOxmA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>"20161012-stadtanzeiger.jpg", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 163ms (ActiveRecord: 2.2ms) NoMethodError - undefined method `original_filename' for "20161012-stadtanzeiger.jpg":String: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:98:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/8c3a226a944d7fb4/variables" for 127.0.0.1 at 2017-03-11 16:09:05 +0100 Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:12:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.4ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (130.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (20.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (57.2ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.6ms) Completed 200 OK in 491ms (Views: 450.1ms | ActiveRecord: 4.6ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:12:40 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (2.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 45ms (ActiveRecord: 3.7ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:12:45 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"RwvyfUbDeWWt9RnKWq2je2oMBROlZ1AlmjfqnIY1NQKCBxesb/s/97m3pHxT4o/9YXjizjW9I2FVYHz56BTv0A==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 14946ms (ActiveRecord: 2.5ms) Errno::ENOENT - No such file or directory @ rb_sysopen - /Users/thomasmuntaner/Projects/Websites/cavy/spec/dummy/public/uploads/20161012-stadtanzeiger.jpg: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:98:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/822ac497747a952f/variables" for 127.0.0.1 at 2017-03-11 16:13:05 +0100 Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started GET "/" for 127.0.0.1 at 2017-03-11 16:15:04 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 331ms (ActiveRecord: 8.8ms) Started GET "/en/" for 127.0.0.1 at 2017-03-11 16:15:07 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (96.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (32.8ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (8.7ms) Completed 200 OK in 1430ms (Views: 1260.2ms | ActiveRecord: 101.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:15:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (7.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (351.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (35.8ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (22.3ms) Completed 200 OK in 562ms (Views: 527.6ms | ActiveRecord: 6.9ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:15:13 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 44ms (ActiveRecord: 3.1ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:15:20 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ptyxRTMEYpC224pwoI2VvK4ZxAex+Dz7wKgi1JbvaAZj0FSUGjwkAqKZN8apwrk6pW0j2iEiT78P/7Sx+M6y1A==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 6991ms (ActiveRecord: 3.4ms) NoMethodError - undefined method `original_filename' for nil:NilClass: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:98:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/951d107a8b8000c8/variables" for 127.0.0.1 at 2017-03-11 16:15:32 +0100 Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:16:14 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ptyxRTMEYpC224pwoI2VvK4ZxAex+Dz7wKgi1JbvaAZj0FSUGjwkAqKZN8apwrk6pW0j2iEiT78P/7Sx+M6y1A==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT  (0.6ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 463ms (ActiveRecord: 23.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:16:16 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.3ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (501.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (69.6ms) Cavy::ItemSection Load (1.9ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (47.1ms) Completed 200 OK in 2054ms (Views: 1967.3ms | ActiveRecord: 7.3ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:16:19 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (5.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.9ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 226ms (ActiveRecord: 8.9ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:16:42 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"AKle5poQGvZ5ApOxCyAlv3Nsd7W0tiv9Q3OAHIe7VxXFpbs3syhcZG1ALgcCbwk5eBiQaCRsWLmMJBZ56ZqNxw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 109ms (ActiveRecord: 4.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:16:43 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (75.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (64.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 282ms (Views: 163.7ms | ActiveRecord: 80.2ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:16:43 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (8.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 51ms (ActiveRecord: 9.5ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:16:43 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (1.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 57ms (ActiveRecord: 3.0ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:17:07 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yGMOdwOXe/QwjAl9VW6MsQAjJMAwq+EB21Yb4tyWtuANb+umKq89ZiTOtMtcIaA3C1fDHaBxkkUUAY2HsrdsMg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 103ms (ActiveRecord: 4.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:17:07 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (68.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.1ms) Completed 200 OK in 206ms (Views: 167.8ms | ActiveRecord: 2.9ms) Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:17:07 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (3.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (5.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (18.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 143ms (ActiveRecord: 36.3ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/en/admin/page/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:17:08 +0100 Processing by Cavy::AdminPagesController#edit as JPEG Parameters: {"locale"=>"en", "id"=>"20161012-stadtanzeiger"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (32.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 20161012], ["LIMIT", 1]] Completed 500 in 105ms (ActiveRecord: 34.3ms) ActiveRecord::RecordNotFound - Couldn't find Cavy::Page with 'id'=20161012-stadtanzeiger: activerecord (5.0.2) lib/active_record/core.rb:173:in `find' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:18:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (77.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.4ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.0ms) Completed 200 OK in 338ms (Views: 287.2ms | ActiveRecord: 3.4ms) Started GET "/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:18:57 +0100 Processing by Cavy::PagesController#page as JPEG Parameters: {"route"=>"20161012-stadtanzeiger"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/20161012-stadtanzeiger.jpg Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 38ms (ActiveRecord: 1.5ms) Started GET "/en/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 16:18:58 +0100 Processing by Cavy::PagesController#page as JPEG Parameters: {"locale"=>"en", "route"=>"20161012-stadtanzeiger"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "20161012-stadtanzeiger"], ["LIMIT", 1]] Completed 500 in 42ms (ActiveRecord: 1.6ms) ActionController::RoutingError - Not Found: /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:18:in `not_found' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:22:in `get_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:7:in `page' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started GET "/" for 127.0.0.1 at 2017-03-11 16:18:58 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (7.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (5.2ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 44ms (ActiveRecord: 12.5ms) Started GET "/en/" for 127.0.0.1 at 2017-03-11 16:18:58 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (10.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (7.1ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (78.7ms) Completed 200 OK in 372ms (Views: 287.3ms | ActiveRecord: 12.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:19:19 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.1ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (56.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.0ms) Completed 200 OK in 183ms (Views: 140.4ms | ActiveRecord: 4.0ms) Started GET "/uploads/" for 127.0.0.1 at 2017-03-11 16:19:19 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"route"=>"uploads"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/uploads Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 25ms (ActiveRecord: 1.3ms) Started GET "/en/uploads" for 127.0.0.1 at 2017-03-11 16:19:19 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en", "route"=>"uploads"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "uploads"], ["LIMIT", 1]] Completed 500 in 84ms (ActiveRecord: 1.8ms) ActionController::RoutingError - Not Found: /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:18:in `not_found' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:22:in `get_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/pages_controller.rb:7:in `page' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:21:02 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"y90viByw+Xd3dTZBmq+jpyx6WVqqrHRugpudvJp3wgMO0cpZNYi/5WM3i/eT4I8hJw6+hzp2BypNzAvZ9FYY0Q==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 380ms (ActiveRecord: 10.8ms) NoMethodError - undefined method `original_filename' for nil:NilClass: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:101:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/848d37399f2dce47/variables" for 127.0.0.1 at 2017-03-11 16:21:04 +0100 Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:21:36 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"y90viByw+Xd3dTZBmq+jpyx6WVqqrHRugpudvJp3wgMO0cpZNYi/5WM3i/eT4I8hJw6+hzp2BypNzAvZ9FYY0Q==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (1.1ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"/uploads/0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (37.5ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 309ms (ActiveRecord: 43.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 16:21:37 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (6.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (107.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (30.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (33.0ms) Completed 200 OK in 404ms (Views: 352.4ms | ActiveRecord: 5.3ms) Started GET "/" for 127.0.0.1 at 2017-03-11 21:57:50 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 191ms (ActiveRecord: 8.9ms) Started GET "/en/" for 127.0.0.1 at 2017-03-11 21:57:51 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (10.2ms) Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (48.3ms) Completed 200 OK in 1114ms (Views: 1002.8ms | ActiveRecord: 10.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-11 21:58:07 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.5ms) Cavy::ItemSection Load (1.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (35.2ms) Completed 200 OK in 394ms (Views: 344.3ms | ActiveRecord: 7.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-11 21:58:11 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (82.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (95.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 207ms (Views: 96.1ms | ActiveRecord: 85.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 21:58:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (271.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.4ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 393ms (Views: 353.3ms | ActiveRecord: 8.0ms) Started GET "/uploads/0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg" for 127.0.0.1 at 2017-03-11 21:58:13 +0100 ActionController::RoutingError (No route matches [GET] "/uploads/0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg"): actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (69.2ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [56 times] (79.1ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (680.5ms) Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (1138.4ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 21:58:21 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"lDjf1L0hXVkeJ2IW6ym39sISFa8SkTDV0q6nwEvZae1RNDoFlBkbywpl36DiZptwyWbycoJLQ5Ed+TGlJfizPw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Completed 500 in 133ms (ActiveRecord: 1.7ms) NameError - uninitialized constant Cavy::Page::FileUploader: activesupport (5.0.2) lib/active_support/dependencies.rb:550:in `load_missing_constant' activesupport (5.0.2) lib/active_support/dependencies.rb:203:in `const_missing' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:86:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/0ef614631ca75884/variables" for 127.0.0.1 at 2017-03-11 21:58:22 +0100 Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 21:59:17 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"lDjf1L0hXVkeJ2IW6ym39sISFa8SkTDV0q6nwEvZae1RNDoFlBkbywpl36DiZptwyWbycoJLQ5Ed+TGlJfizPw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (64.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.6ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"/uploads/20161012-stadtanzeiger.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (0.9ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 777ms (ActiveRecord: 83.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 21:59:19 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (207.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.7ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (34.8ms) Completed 200 OK in 1421ms (Views: 1371.5ms | ActiveRecord: 4.3ms) Started GET "/uploads/20161012-stadtanzeiger.jpg" for 127.0.0.1 at 2017-03-11 21:59:20 +0100 ActionController::RoutingError (No route matches [GET] "/uploads/20161012-stadtanzeiger.jpg"): actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (5.2ms) Rendered collection of /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [56 times] (101.5ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (29.9ms) Rendering /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (517.3ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:00:05 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"S96OELMxLnui9VLQnSS1erqRJTyfXRggs9pDCgyX5fyO0mvBmglo6ba372aUa5n8seXC4Q+Ha2R8jdVvYrY/Lg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 401ms (ActiveRecord: 20.5ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:00:06 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (83.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (12.6ms) Cavy::ItemSection Load (1.2ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (20.1ms) Completed 200 OK in 740ms (Views: 713.1ms | ActiveRecord: 5.1ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:04:21 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"IsV2S1zrGVrTMh/PAt2hS32nsnpG3GLFChoUFv2SHGfnyZOaddNfyMdwonkLko3NdtNVp9YGEYHFTYJzk7PGtQ==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d4-1e3269b7b6d00538a939b7a0acf13013.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d4-1e3269b7b6d00538a939b7a0acf13013.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (39.3ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"/uploads/0-cus-d4-1e3269b7b6d00538a939b7a0acf13013.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (0.7ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 350ms (ActiveRecord: 44.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:04:22 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (22.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (98.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (30.7ms) Completed 200 OK in 481ms (Views: 405.3ms | ActiveRecord: 28.3ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:08:06 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"aCVIsKEqb1AXLgJtvU/qS4xazoUxwNHPRtWUW8rVXB2tKa1hiBIpwgNsv9u0AMbNhy4pWKEaoouJggI+pPSGzw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (1.1ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.6ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 299ms (ActiveRecord: 17.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:08:07 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (61.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (12.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (16.4ms) Completed 200 OK in 190ms (Views: 160.2ms | ActiveRecord: 3.6ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:08:19 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"s+MQax5j2O4JFf1GOWMvdNJLUdG3+srGJOzUrNzYanB27/W6N1uefB1XQPAwLAPy2T+2DCcguYLru0LJsvmwog==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.7ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.6ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 126ms (ActiveRecord: 6.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:08:20 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (74.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.0ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (14.6ms) Completed 200 OK in 227ms (Views: 191.1ms | ActiveRecord: 3.7ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:08:33 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"z2hZq2LrcSIdNJv0rJaFu31/ESvWjvjTzJttWKfIYzcKZLx6S9M3sAl2JkKl2ak9dgv29kZUi5cDzPs9yem55Q==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.2ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.6ms) COMMIT  (0.4ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 17943ms (ActiveRecord: 5.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:08:51 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.2ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (52.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.5ms) Completed 200 OK in 169ms (Views: 138.9ms | ActiveRecord: 3.1ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:09:12 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"mAGsVDYrKv/Mzld2q1Ydd9vpNSrnMRGoWSyfop6SG1hdDUmFHxNsbdiM6sCiGTHx0J3S93frYuyWewnH8LPBig==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (0.7ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"/uploads/20161012-stadtanzeiger.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (61.7ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 75274ms (ActiveRecord: 66.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:34:30 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Completed 500 in 954ms (ActiveRecord: 10.3ms) NoMethodError - undefined method `cavy_page_template' for #: activerecord (5.0.2) lib/active_record/dynamic_matchers.rb:21:in `method_missing' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:13:in `' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:2:in `' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:1:in `' activesupport (5.0.2) lib/active_support/dependencies.rb:477:in `block in load_file' activesupport (5.0.2) lib/active_support/dependencies.rb:662:in `new_constants_in' activesupport (5.0.2) lib/active_support/dependencies.rb:476:in `load_file' activesupport (5.0.2) lib/active_support/dependencies.rb:375:in `block in require_or_load' activesupport (5.0.2) lib/active_support/dependencies.rb:37:in `block in load_interlock' activesupport (5.0.2) lib/active_support/dependencies/interlock.rb:12:in `block in loading' activesupport (5.0.2) lib/active_support/concurrency/share_lock.rb:150:in `exclusive' activesupport (5.0.2) lib/active_support/dependencies/interlock.rb:11:in `loading' activesupport (5.0.2) lib/active_support/dependencies.rb:37:in `load_interlock' activesupport (5.0.2) lib/active_support/dependencies.rb:358:in `require_or_load' activesupport (5.0.2) lib/active_support/dependencies.rb:511:in `load_missing_constant' activesupport (5.0.2) lib/active_support/dependencies.rb:203:in `const_missing' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:56:in `edit' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/3f415d954d877438/variables" for 127.0.0.1 at 2017-03-11 22:34:32 +0100 Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:35:40 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (51.3ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Cavy::PageTemplate Load (37.9ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (461.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.8ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (43.1ms) Completed 200 OK in 1962ms (Views: 1546.0ms | ActiveRecord: 101.7ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:35:56 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"m4uUXiziDgiMcYzCaFDYq0hqEkgr3lBU2hC6nJFf5rZeh3GPBdpImpgzMXRhH/QtQx71lbsEIxAVRyz5/348ZA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (1.2ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (20.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 183853ms (ActiveRecord: 25.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:39:20 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (50.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (5.0ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (378.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.1ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (33.1ms) Completed 200 OK in 1914ms (Views: 1417.1ms | ActiveRecord: 66.8ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:39:27 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yJX9tPFY52WiF23wnlg+N+5xfTuqIcF5C1szEN62/EqLrIn+v0lD4LK4AHLNkx+1M0iKX5y9EErevqpLVsBIw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (2.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT  (0.1ms) BEGIN Cavy::Page Exists (27.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 249983ms (ActiveRecord: 34.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:43:57 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (62.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.0ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.3ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (340.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.7ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (47.6ms) Completed 200 OK in 1922ms (Views: 1442.2ms | ActiveRecord: 80.4ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:44:03 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"C+dU4RXc/JhDU43V3eFokQPtGw495D+Pmgsa7ezffXfO67EwPOS6ClcRMGPUrkQXCJn8060+TMtVXIyIgv6npQ==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT  (0.1ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.0ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.2ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 28207ms (ActiveRecord: 5.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:45:23 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.6ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (151.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (14.6ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (18.1ms) Completed 200 OK in 1031ms (Views: 760.6ms | ActiveRecord: 21.1ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:45:31 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zKY7WhVPnaArxdUbYFMFSiMdupzhxs/ZhD7qF6G+oI0Jqt6LPHfbMj+HaK1pHCnMKGldQXEcvJ1LaXxyz596Xw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (22.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.6ms) BEGIN Cavy::Page Exists (0.8ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 108320ms (ActiveRecord: 27.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-11 22:47:19 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.5ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (66.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (15.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (13.2ms) Completed 200 OK in 212ms (Views: 182.2ms | ActiveRecord: 3.2ms) Started GET "/" for 127.0.0.1 at 2017-03-12 14:05:53 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (0.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (33.1ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 1199ms (ActiveRecord: 42.2ms) Started GET "/en/" for 127.0.0.1 at 2017-03-12 14:05:59 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (64.9ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (6.3ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (30.3ms) Completed 200 OK in 2669ms (Views: 2346.6ms | ActiveRecord: 134.1ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-12 14:06:07 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (121.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (53.3ms) Completed 200 OK in 707ms (Views: 666.4ms | ActiveRecord: 2.8ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-12 14:06:20 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.8ms) Completed 200 OK in 260ms (Views: 163.9ms | ActiveRecord: 2.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 14:06:23 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.5ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (727.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (33.2ms) Completed 200 OK in 1154ms (Views: 1056.0ms | ActiveRecord: 6.1ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 15:28:37 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UCwAy1TRZ+jNqgmRFMh+pyXUuj5cmBTHC3l7xJSMuWGVIOUafekhetnotCcdh1IhLqBd48xCZ4PELu2h+q1jsw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (242.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (432.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 3575ms (ActiveRecord: 919.5ms) NoMethodError - undefined method `store!' for nil:NilClass: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:127:in `upload_image' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:117:in `parse_page_element' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:97:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:96:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:44:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/ec21b3e563d85d92/variables" for 127.0.0.1 at 2017-03-12 15:28:47 +0100 Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started POST "/__better_errors/ec21b3e563d85d92/eval" for 127.0.0.1 at 2017-03-12 15:28:58 +0100 Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:40:45 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UCwAy1TRZ+jNqgmRFMh+pyXUuj5cmBTHC3l7xJSMuWGVIOUafekhetnotCcdh1IhLqBd48xCZ4PELu2h+q1jsw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (133.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 797ms (ActiveRecord: 147.3ms) NoMethodError - undefined method `store!' for nil:NilClass: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:127:in `upload_image' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:117:in `parse_page_element' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:97:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:96:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:44:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/1a8245e35fd68334/variables" for 127.0.0.1 at 2017-03-12 16:40:49 +0100 Cavy::PageTemplate Load (1.3ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:41:04 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:41:13 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:41:33 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:41:38 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:43:28 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:43:38 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:43:49 +0100 Started POST "/__better_errors/1a8245e35fd68334/eval" for 127.0.0.1 at 2017-03-12 16:44:06 +0100 Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:45:31 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UCwAy1TRZ+jNqgmRFMh+pyXUuj5cmBTHC3l7xJSMuWGVIOUafekhetnotCcdh1IhLqBd48xCZ4PELu2h+q1jsw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (101.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 425ms (ActiveRecord: 114.5ms) NoMethodError - undefined method `store!' for nil:NilClass: /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:128:in `upload_image' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:117:in `parse_page_element' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:97:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:96:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:44:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/feca32d5df83e5bd/variables" for 127.0.0.1 at 2017-03-12 16:45:32 +0100 Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 [["id", 1]] Started POST "/__better_errors/feca32d5df83e5bd/variables" for 127.0.0.1 at 2017-03-12 16:45:34 +0100 Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:47:12 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UCwAy1TRZ+jNqgmRFMh+pyXUuj5cmBTHC3l7xJSMuWGVIOUafekhetnotCcdh1IhLqBd48xCZ4PELu2h+q1jsw==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (41.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Completed 500 in 8337ms (ActiveRecord: 56.7ms) Excon::Error::Socket - hostname "cavy.cavy.s3.eu-central-1.amazonaws.com" does not match the server certificate (OpenSSL::SSL::SSLError): excon (0.55.0) lib/excon/error.rb:19:in `initialize' excon (0.55.0) lib/excon/connection.rb:421:in `raise_socket_error' excon (0.55.0) lib/excon/connection.rb:186:in `rescue in request_call' excon (0.55.0) lib/excon/connection.rb:95:in `request_call' excon (0.55.0) lib/excon/middlewares/mock.rb:48:in `request_call' excon (0.55.0) lib/excon/middlewares/instrumentor.rb:26:in `request_call' excon (0.55.0) lib/excon/middlewares/base.rb:16:in `request_call' excon (0.55.0) lib/excon/middlewares/base.rb:16:in `request_call' excon (0.55.0) lib/excon/middlewares/base.rb:16:in `request_call' excon (0.55.0) lib/excon/connection.rb:249:in `request' excon (0.55.0) lib/excon/middlewares/idempotent.rb:27:in `error_call' excon (0.55.0) lib/excon/middlewares/base.rb:11:in `error_call' excon (0.55.0) lib/excon/middlewares/base.rb:11:in `error_call' excon (0.55.0) lib/excon/connection.rb:272:in `rescue in request' excon (0.55.0) lib/excon/connection.rb:215:in `request' excon (0.55.0) lib/excon/middlewares/idempotent.rb:27:in `error_call' excon (0.55.0) lib/excon/middlewares/base.rb:11:in `error_call' excon (0.55.0) lib/excon/middlewares/base.rb:11:in `error_call' excon (0.55.0) lib/excon/connection.rb:272:in `rescue in request' excon (0.55.0) lib/excon/connection.rb:215:in `request' excon (0.55.0) lib/excon/middlewares/idempotent.rb:27:in `error_call' excon (0.55.0) lib/excon/middlewares/base.rb:11:in `error_call' excon (0.55.0) lib/excon/middlewares/base.rb:11:in `error_call' excon (0.55.0) lib/excon/connection.rb:272:in `rescue in request' excon (0.55.0) lib/excon/connection.rb:215:in `request' fog-core (1.43.0) lib/fog/core/connection.rb:81:in `request' fog-xml (0.1.2) lib/fog/xml/connection.rb:9:in `request' fog-aws (1.2.1) lib/fog/aws/storage.rb:612:in `_request' fog-aws (1.2.1) lib/fog/aws/storage.rb:607:in `request' fog-aws (1.2.1) lib/fog/aws/storage.rb:638:in `rescue in _request' fog-aws (1.2.1) lib/fog/aws/storage.rb:612:in `_request' fog-aws (1.2.1) lib/fog/aws/storage.rb:607:in `request' fog-aws (1.2.1) lib/fog/aws/requests/storage/put_object.rb:47:in `put_object' fog-aws (1.2.1) lib/fog/aws/models/storage/file.rb:219:in `save' fog-core (1.43.0) lib/fog/core/collection.rb:51:in `create' carrierwave (1.0.0) lib/carrierwave/storage/fog.rb:313:in `store' carrierwave (1.0.0) lib/carrierwave/storage/fog.rb:76:in `store!' carrierwave (1.0.0) lib/carrierwave/uploader/store.rb:57:in `block in store!' carrierwave (1.0.0) lib/carrierwave/uploader/callbacks.rb:15:in `with_callbacks' carrierwave (1.0.0) lib/carrierwave/uploader/store.rb:56:in `store!' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:127:in `upload_image' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:115:in `parse_page_element' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:95:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/536a51d6d3ede200/variables" for 127.0.0.1 at 2017-03-12 16:47:22 +0100 Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:52:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (42.9ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (418.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.1ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (28.7ms) Completed 200 OK in 2358ms (Views: 1801.7ms | ActiveRecord: 61.0ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:53:35 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"eV9bhmp/LupjjO0t2wVqSi7HHjBTcU3dU8pZKrMsZfy8U75XQ0doeHfOUJvSSkbMJbP57cOrPpmcnc9P3Q2/Lg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (42.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (41.2ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (16.1ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"https://cavy.s3.amazonaws.com/uploads/0-cus-d1-6f5716af74c7c5475299a278dd11e3db.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (23.2ms) COMMIT  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 2295ms (ActiveRecord: 139.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:53:38 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.6ms) Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (217.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (35.5ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (55.2ms) Completed 200 OK in 1357ms (Views: 1308.3ms | ActiveRecord: 5.1ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:56:57 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rfwwhlo5Da20VMw6CzH1dwY+vSJ4X+ayysC9ngtUQ0to8NVXcwFLP6AWcYwCftnxDUpa/+iFlfYFlyv7ZXWZmQ==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (43.8ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (20.0ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (0.8ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 5362ms (ActiveRecord: 82.9ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 16:57:03 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.3ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (238.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.5ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (28.5ms) Completed 200 OK in 1378ms (Views: 1337.3ms | ActiveRecord: 4.5ms) Started GET "/" for 127.0.0.1 at 2017-03-12 22:35:58 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (9.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 590ms (ActiveRecord: 167.9ms) Started GET "/en/" for 127.0.0.1 at 2017-03-12 22:36:02 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (99.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (95.0ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (29.3ms) Completed 200 OK in 1614ms (Views: 1403.7ms | ActiveRecord: 123.5ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-12 22:36:07 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (11.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.5ms) Cavy::ItemSection Load (40.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (68.8ms) Completed 200 OK in 281ms (Views: 185.8ms | ActiveRecord: 42.6ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-12 22:36:10 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.8ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.3ms) Completed 200 OK in 143ms (Views: 109.3ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 22:36:20 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (15.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (457.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 601ms (Views: 538.9ms | ActiveRecord: 21.2ms) Started GET "/en/admin/sections" for 127.0.0.1 at 2017-03-12 22:38:56 +0100 Processing by Cavy::ItemSectionsController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/item_sections/index.html.erb within layouts/cavy/admin_layout (7.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.1ms) CACHE (0.1ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 270ms (Views: 227.8ms | ActiveRecord: 1.7ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-12 22:42:35 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (1.1ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (14.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (28.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 184ms (Views: 105.8ms | ActiveRecord: 18.0ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 22:42:38 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.1ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (111.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 259ms (Views: 197.4ms | ActiveRecord: 3.0ms)  (0.6ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (106.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCavyResources (20170312214504)  (0.3ms) BEGIN  (672.2ms) CREATE TABLE "cavy_resources" ("id" serial primary key, "name" character varying, "url" character varying, "file_type" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) SQL (24.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170312214504"]]  (32.2ms) COMMIT ActiveRecord::InternalMetadata Load (48.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN  (0.2ms) COMMIT  (0.3ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 23:14:03 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"QWZcOjEAis85xBR6wbfBC+I78gFanZ6+owr71gsDlkiEarnrGDjMXS2GqczI+O2N6U8V3MpH7fpsXW2zZSJMmg==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (75.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (22.5ms) INSERT INTO "cavy_resources" ("name", "url", "file_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "20161012-stadtanzeiger.jpg"], ["url", "https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg"], ["file_type", "IMAGE"], ["created_at", 2017-03-12 22:14:08 UTC], ["updated_at", 2017-03-12 22:14:08 UTC]]  (15.6ms) COMMIT  (0.5ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT  (0.4ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 4244ms (ActiveRecord: 144.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-12 23:14:08 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.3ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.1ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (436.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.2ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (31.0ms) Completed 200 OK in 2057ms (Views: 2006.3ms | ActiveRecord: 4.4ms) ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCavyResources (20170312214504)  (0.3ms) BEGIN  (66.1ms) DROP TABLE "cavy_resources" SQL (0.9ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20170312214504"]]  (1.7ms) COMMIT  (0.3ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) SELECT pg_try_advisory_lock(7080462405313721235); ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCavyResources (20170312214504)  (0.3ms) BEGIN  (84.1ms) CREATE TABLE "cavy_resources" ("id" serial primary key, "url" character varying, "name" character varying, "file_type" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (13.3ms) CREATE UNIQUE INDEX "index_cavy_resources_on_url" ON "cavy_resources" ("url") SQL (22.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170312214504"]]  (25.9ms) COMMIT ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.2ms) BEGIN  (0.3ms) COMMIT  (0.3ms) SELECT pg_advisory_unlock(7080462405313721235) ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/" for 127.0.0.1 at 2017-03-13 08:08:12 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (1.0ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 140ms (ActiveRecord: 9.5ms) Started GET "/en/" for 127.0.0.1 at 2017-03-13 08:08:13 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (2.4ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (75.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (6.3ms) Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (9.3ms) Completed 200 OK in 479ms (Views: 303.7ms | ActiveRecord: 87.6ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-13 08:08:18 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (35.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (31.4ms) Completed 200 OK in 232ms (Views: 188.7ms | ActiveRecord: 2.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 08:08:23 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (12.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (11.4ms) Completed 200 OK in 136ms (Views: 99.3ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:08:40 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (206.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.9ms) Completed 200 OK in 440ms (Views: 395.0ms | ActiveRecord: 5.6ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:08:51 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rbqbxJTUSgL2yIYJho4/vGUlw9PNm5idfbFXUAAB7q9otn4VvewMkOKKO7+PwRM6blEkDl1B69my5sE1biA0fQ==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.8ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (503.1ms) INSERT INTO "cavy_resources" ("url", "name", "file_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["url", "https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg"], ["name", "20161012-stadtanzeiger.jpg"], ["file_type", "IMAGE"], ["created_at", 2017-03-13 07:09:01 UTC], ["updated_at", 2017-03-13 07:09:01 UTC]]  (182.9ms) COMMIT  (0.3ms) BEGIN Cavy::Page Exists (0.6ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.4ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 10553ms (ActiveRecord: 698.8ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:09:02 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (140.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (7.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (32.3ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (10.1ms) Completed 200 OK in 502ms (Views: 445.3ms | ActiveRecord: 3.0ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:12:19 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vMf0ZmkUOrUw8U6Syg3pvKsvnQ4SHlG5Fu1hz9Zs0vZ5yxG3QCx8JySz8yTDQsU6oFt604LEIv3ZuvequE0IJA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.8ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (42.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) BEGIN SQL (21.4ms) INSERT INTO "cavy_resources" ("url", "name", "file_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["url", "https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg"], ["name", "20161012-stadtanzeiger.jpg"], ["file_type", "IMAGE"], ["created_at", 2017-03-13 07:12:25 UTC], ["updated_at", 2017-03-13 07:12:25 UTC]]  (0.4ms) ROLLBACK Completed 500 in 3740ms (ActiveRecord: 83.9ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) PG::UniqueViolation - ERROR: duplicate key value violates unique constraint "index_cavy_resources_on_url" DETAIL: Key (url)=(https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg) already exists. : activerecord (5.0.2) lib/active_record/connection_adapters/postgresql_adapter.rb:598:in `block in exec_no_cache' activerecord (5.0.2) lib/active_record/connection_adapters/abstract_adapter.rb:589:in `block in log' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activerecord (5.0.2) lib/active_record/connection_adapters/abstract_adapter.rb:583:in `log' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql_adapter.rb:598:in `exec_no_cache' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql_adapter.rb:587:in `execute_and_clear' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql/database_statements.rb:103:in `exec_query' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql/database_statements.rb:137:in `exec_insert' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/database_statements.rb:124:in `insert' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/query_cache.rb:17:in `insert' activerecord (5.0.2) lib/active_record/relation.rb:65:in `insert' activerecord (5.0.2) lib/active_record/persistence.rb:560:in `_create_record' activerecord (5.0.2) lib/active_record/counter_cache.rb:128:in `_create_record' activerecord (5.0.2) lib/active_record/locking/optimistic.rb:75:in `_create_record' activerecord (5.0.2) lib/active_record/attribute_methods/dirty.rb:123:in `_create_record' activerecord (5.0.2) lib/active_record/callbacks.rb:302:in `block in _create_record' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_create_callbacks' activerecord (5.0.2) lib/active_record/callbacks.rb:302:in `_create_record' activerecord (5.0.2) lib/active_record/timestamp.rb:68:in `_create_record' activerecord (5.0.2) lib/active_record/persistence.rb:540:in `create_or_update' activerecord (5.0.2) lib/active_record/callbacks.rb:298:in `block in create_or_update' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_save_callbacks' activerecord (5.0.2) lib/active_record/callbacks.rb:298:in `create_or_update' activerecord (5.0.2) lib/active_record/persistence.rb:125:in `save' activerecord (5.0.2) lib/active_record/validations.rb:44:in `save' activerecord (5.0.2) lib/active_record/attribute_methods/dirty.rb:22:in `save' activerecord (5.0.2) lib/active_record/transactions.rb:319:in `block (2 levels) in save' activerecord (5.0.2) lib/active_record/transactions.rb:395:in `block in with_transaction_returning_status' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/database_statements.rb:232:in `block in transaction' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/transaction.rb:189:in `within_new_transaction' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/database_statements.rb:232:in `transaction' activerecord (5.0.2) lib/active_record/transactions.rb:211:in `transaction' activerecord (5.0.2) lib/active_record/transactions.rb:392:in `with_transaction_returning_status' activerecord (5.0.2) lib/active_record/transactions.rb:319:in `block in save' activerecord (5.0.2) lib/active_record/transactions.rb:334:in `rollback_active_record_state!' activerecord (5.0.2) lib/active_record/transactions.rb:318:in `save' activerecord (5.0.2) lib/active_record/suppressor.rb:41:in `save' activerecord (5.0.2) lib/active_record/persistence.rb:34:in `create' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:129:in `upload_image' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:115:in `parse_page_element' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:95:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/522dcd3705970b7f/variables" for 127.0.0.1 at 2017-03-13 08:12:26 +0100 Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:14:48 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vMf0ZmkUOrUw8U6Syg3pvKsvnQ4SHlG5Fu1hz9Zs0vZ5yxG3QCx8JySz8yTDQsU6oFt604LEIv3ZuvequE0IJA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (51.2ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (67.1ms) INSERT INTO "cavy_resources" ("url", "name", "file_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["url", "https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg"], ["name", "20161012-stadtanzeiger.jpg"], ["file_type", "IMAGE"], ["created_at", 2017-03-13 07:14:53 UTC], ["updated_at", 2017-03-13 07:14:53 UTC]]  (0.3ms) ROLLBACK Completed 500 in 4042ms (ActiveRecord: 136.8ms) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:7) DEPRECATION WARNING: #original_exception is deprecated. Use #cause instead. (called from initialize at /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/better_errors-2.1.1/lib/better_errors/raised_exception.rb:8) PG::UniqueViolation - ERROR: duplicate key value violates unique constraint "index_cavy_resources_on_url" DETAIL: Key (url)=(https://cavy.s3.amazonaws.com/uploads/20161012-stadtanzeiger.jpg) already exists. : activerecord (5.0.2) lib/active_record/connection_adapters/postgresql_adapter.rb:598:in `block in exec_no_cache' activerecord (5.0.2) lib/active_record/connection_adapters/abstract_adapter.rb:589:in `block in log' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activerecord (5.0.2) lib/active_record/connection_adapters/abstract_adapter.rb:583:in `log' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql_adapter.rb:598:in `exec_no_cache' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql_adapter.rb:587:in `execute_and_clear' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql/database_statements.rb:103:in `exec_query' activerecord (5.0.2) lib/active_record/connection_adapters/postgresql/database_statements.rb:137:in `exec_insert' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/database_statements.rb:124:in `insert' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/query_cache.rb:17:in `insert' activerecord (5.0.2) lib/active_record/relation.rb:65:in `insert' activerecord (5.0.2) lib/active_record/persistence.rb:560:in `_create_record' activerecord (5.0.2) lib/active_record/counter_cache.rb:128:in `_create_record' activerecord (5.0.2) lib/active_record/locking/optimistic.rb:75:in `_create_record' activerecord (5.0.2) lib/active_record/attribute_methods/dirty.rb:123:in `_create_record' activerecord (5.0.2) lib/active_record/callbacks.rb:302:in `block in _create_record' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_create_callbacks' activerecord (5.0.2) lib/active_record/callbacks.rb:302:in `_create_record' activerecord (5.0.2) lib/active_record/timestamp.rb:68:in `_create_record' activerecord (5.0.2) lib/active_record/persistence.rb:540:in `create_or_update' activerecord (5.0.2) lib/active_record/callbacks.rb:298:in `block in create_or_update' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_save_callbacks' activerecord (5.0.2) lib/active_record/callbacks.rb:298:in `create_or_update' activerecord (5.0.2) lib/active_record/persistence.rb:125:in `save' activerecord (5.0.2) lib/active_record/validations.rb:44:in `save' activerecord (5.0.2) lib/active_record/attribute_methods/dirty.rb:22:in `save' activerecord (5.0.2) lib/active_record/transactions.rb:319:in `block (2 levels) in save' activerecord (5.0.2) lib/active_record/transactions.rb:395:in `block in with_transaction_returning_status' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/database_statements.rb:232:in `block in transaction' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/transaction.rb:189:in `within_new_transaction' activerecord (5.0.2) lib/active_record/connection_adapters/abstract/database_statements.rb:232:in `transaction' activerecord (5.0.2) lib/active_record/transactions.rb:211:in `transaction' activerecord (5.0.2) lib/active_record/transactions.rb:392:in `with_transaction_returning_status' activerecord (5.0.2) lib/active_record/transactions.rb:319:in `block in save' activerecord (5.0.2) lib/active_record/transactions.rb:334:in `rollback_active_record_state!' activerecord (5.0.2) lib/active_record/transactions.rb:318:in `save' activerecord (5.0.2) lib/active_record/suppressor.rb:41:in `save' activerecord (5.0.2) lib/active_record/persistence.rb:34:in `create' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:129:in `upload_image' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:115:in `parse_page_element' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:95:in `block (2 levels) in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:94:in `block in update_elements' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:17:in `try!' activesupport (5.0.2) lib/active_support/core_ext/object/try.rb:6:in `try' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:92:in `update_elements' /Users/thomasmuntaner/Projects/Websites/cavy/app/models/cavy/page.rb:42:in `update_page' /Users/thomasmuntaner/Projects/Websites/cavy/app/controllers/cavy/admin_pages_controller.rb:48:in `update' actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' railties (5.0.2) lib/rails/railtie.rb:193:in `method_missing' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:17:in `block in ' actionpack (5.0.2) lib/action_dispatch/routing/mapper.rb:46:in `serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' meta_request (0.4.0) lib/meta_request/middlewares/app_request_handler.rb:13:in `call' meta_request (0.4.0) lib/meta_request/middlewares/meta_request_handler.rb:13:in `call' rack (2.0.1) lib/rack/etag.rb:25:in `call' rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' rack (2.0.1) lib/rack/head.rb:12:in `call' rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call' better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call' better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' rack-contrib (1.2.0) lib/rack/contrib/response_headers.rb:17:in `call' meta_request (0.4.0) lib/meta_request/middlewares/headers.rb:16:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.2) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run' /Users/thomasmuntaner/.rbenv/versions/2.4.0/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread' Started POST "/__better_errors/14b8c4f0843a2f7a/variables" for 127.0.0.1 at 2017-03-13 08:14:54 +0100 Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:17:27 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vMf0ZmkUOrUw8U6Syg3pvKsvnQ4SHlG5Fu1hz9Zs0vZ5yxG3QCx8JySz8yTDQsU6oFt604LEIv3ZuvequE0IJA==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (43.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) BEGIN SQL (0.8ms) INSERT INTO "cavy_resources" ("url", "name", "file_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["url", "/uploads/20161012-stadtanzeiger.jpg"], ["name", "20161012-stadtanzeiger.jpg"], ["file_type", "IMAGE"], ["created_at", 2017-03-13 07:17:29 UTC], ["updated_at", 2017-03-13 07:17:29 UTC]]  (0.7ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.8ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] SQL (13.2ms) UPDATE "cavy_pages" SET "page_elements" = $1 WHERE "cavy_pages"."id" = $2 [["page_elements", "{\"content_en\":\"\",\"content_de\":\"\",\"string_en\":\"\",\"string_de\":\"de\",\"string_wk\":\"\",\"content_wk\":\"\",\"picture_en\":\"/uploads/20161012-stadtanzeiger.jpg\",\"picture_de\":\"\",\"picture_wk\":\"\"}"], ["id", 1]]  (0.7ms) COMMIT  (0.2ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.3ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 868ms (ActiveRecord: 79.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:17:29 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.7ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (4.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.3ms) Cavy::PageTemplate Load (0.7ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (253.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (8.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (33.4ms) Cavy::ItemSection Load (0.8ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (28.9ms) Completed 200 OK in 1417ms (Views: 1371.3ms | ActiveRecord: 4.4ms) Started PUT "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:20:22 +0100 Processing by Cavy::AdminPagesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sCM//4yn1bYETpV+KqfeiTLgDXH8LlTwcVjARYCKwa91L9oupZ+TJBAMKMgj6PIPOZTqrGz0J7S+D1Yg7qsbfQ==", "page"=>{"title"=>{"en"=>"Home en", "de"=>"foo", "wk"=>""}, "page_elements"=>{"string"=>{"en"=>"", "de"=>"de", "wk"=>""}, "content"=>{"en"=>"", "de"=>"", "wk"=>""}, "picture"=>{"en"=>#, @original_filename="20161012-stadtanzeiger.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"page[page_elements][picture][en]\"; filename=\"20161012-stadtanzeiger.jpg\"\r\nContent-Type: image/jpeg\r\n">}}}, "commit"=>"Submit", "locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Unpermitted parameters: title, page_elements Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Cavy::Resource Load (1.0ms) SELECT "cavy_resources".* FROM "cavy_resources" WHERE "cavy_resources"."name" = $1 AND "cavy_resources"."url" = $2 AND "cavy_resources"."file_type" = $3 LIMIT $4 [["name", "20161012-stadtanzeiger.jpg"], ["url", "/uploads/20161012-stadtanzeiger.jpg"], ["file_type", "IMAGE"], ["LIMIT", 1]]  (0.5ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.4ms) COMMIT  (0.4ms) BEGIN Cavy::Page Exists (0.5ms) SELECT 1 AS one FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 AND ("cavy_pages"."id" != $2) LIMIT $3 [["route", "home"], ["id", 1], ["LIMIT", 1]] CACHE (0.1ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]  (0.5ms) COMMIT Redirected to http://localhost:3000/en/admin/page/1 Completed 302 Found in 411ms (ActiveRecord: 6.2ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 08:20:23 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (11.5ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (4.0ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.9ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (108.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (9.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (34.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (30.0ms) Completed 200 OK in 394ms (Views: 327.4ms | ActiveRecord: 17.5ms) Started GET "/" for 127.0.0.1 at 2017-03-13 21:13:07 +0100 Processing by Cavy::PagesController#page as HTML Cavy::User Load (76.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Redirected to http://localhost:3000/en/ Filter chain halted as :redirect_to_localized_url rendered or redirected Completed 302 Found in 985ms (ActiveRecord: 534.9ms) Started GET "/en/" for 127.0.0.1 at 2017-03-13 21:13:10 +0100 Processing by Cavy::PagesController#page as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (114.0ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."route" = $1 LIMIT $2 [["route", "home"], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/pages/page.html.haml within layouts/cavy/application (69.9ms) Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_header.html.erb (29.2ms) Completed 200 OK in 1374ms (Views: 1120.3ms | ActiveRecord: 177.3ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-13 21:27:34 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (10.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (36.1ms) Cavy::ItemSection Load (13.9ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (61.8ms) Completed 200 OK in 317ms (Views: 260.4ms | ActiveRecord: 18.2ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-13 21:27:38 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (71.2ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (119.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.0ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 268ms (Views: 128.8ms | ActiveRecord: 76.6ms) Started GET "/en/admin/page_template/1" for 127.0.0.1 at 2017-03-13 21:27:40 +0100 Processing by Cavy::AdminPageTemplatesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.8ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::PageTemplate Load (83.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/_form.html.erb (209.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/edit.html.erb within layouts/cavy/admin_layout (231.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.6ms) Completed 200 OK in 463ms (Views: 324.4ms | ActiveRecord: 86.4ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 21:28:10 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.7ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (13.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 133ms (Views: 94.1ms | ActiveRecord: 2.6ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 21:28:13 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (33.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (1.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (4.0ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (163.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.0ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.8ms) Completed 200 OK in 326ms (Views: 242.9ms | ActiveRecord: 36.3ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 21:40:35 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.9ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.5ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (13.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (31.2ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.9ms) Completed 200 OK in 240ms (Views: 207.3ms | ActiveRecord: 3.1ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 21:40:37 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.3ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (13.1ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.9ms) Cavy::PageTemplate Load (0.6ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (3.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (110.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (10.3ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.0ms) Completed 200 OK in 249ms (Views: 193.3ms | ActiveRecord: 17.1ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 21:40:48 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.7ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (11.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.5ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 117ms (Views: 93.6ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-13 21:40:51 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.8ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (13.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.6ms) Cavy::ItemSection Load (0.4ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.3ms) Completed 200 OK in 149ms (Views: 92.6ms | ActiveRecord: 2.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 21:40:56 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (13.0ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.6ms) Completed 200 OK in 114ms (Views: 91.8ms | ActiveRecord: 2.4ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 21:40:58 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.1ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.5ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.7ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (2.1ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.7ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.8ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (50.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.3ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.1ms) Cavy::ItemSection Load (0.7ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.4ms) Completed 200 OK in 156ms (Views: 127.3ms | ActiveRecord: 3.9ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 21:41:28 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.6ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (10.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (7.2ms) Completed 200 OK in 112ms (Views: 89.0ms | ActiveRecord: 2.3ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 21:41:39 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (1.2ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (1.6ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.0ms) Cavy::PageTemplate Load (0.4ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (2.4ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (52.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.9ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.2ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.5ms) Completed 200 OK in 166ms (Views: 133.9ms | ActiveRecord: 5.4ms) Started GET "/en/admin" for 127.0.0.1 at 2017-03-13 21:41:52 +0100 Processing by Cavy::AdminController#dashboard as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.7ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin/dashboard.html.erb within layouts/cavy/admin_layout (1.1ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (4.5ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (8.4ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (9.1ms) Completed 200 OK in 151ms (Views: 86.4ms | ActiveRecord: 1.7ms) Started GET "/en/admin/page_templates" for 127.0.0.1 at 2017-03-13 21:41:54 +0100 Processing by Cavy::AdminPageTemplatesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_page_templates" Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_page_templates/index.html.erb within layouts/cavy/admin_layout (10.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.6ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (11.6ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.3ms) Completed 200 OK in 118ms (Views: 95.5ms | ActiveRecord: 2.5ms) Started GET "/en/admin/pages" for 127.0.0.1 at 2017-03-13 21:41:57 +0100 Processing by Cavy::AdminPagesController#index as HTML Parameters: {"locale"=>"en"} Cavy::User Load (0.5ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.6ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout  (0.5ms) SELECT COUNT(*) FROM "cavy_pages" Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/index.html.erb within layouts/cavy/admin_layout (10.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (5.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (9.7ms) Cavy::ItemSection Load (0.6ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.2ms) Completed 200 OK in 116ms (Views: 91.9ms | ActiveRecord: 2.7ms) Started GET "/en/admin/page/1" for 127.0.0.1 at 2017-03-13 22:57:10 +0100 Processing by Cavy::AdminPagesController#edit as HTML Parameters: {"locale"=>"en", "id"=>"1"} Cavy::User Load (0.6ms) SELECT "cavy_users".* FROM "cavy_users" WHERE "cavy_users"."auth_token" = $1 LIMIT $2 [["auth_token", "iQAuUEEtR1HlSraDQy_V7A"], ["LIMIT", 1]] HABTM_CavyGroups Load (0.4ms) SELECT "cavy_groups_users".* FROM "cavy_groups_users" WHERE "cavy_groups_users"."cavy_user_id" = 1 Cavy::Page Load (0.4ms) SELECT "cavy_pages".* FROM "cavy_pages" WHERE "cavy_pages"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendering /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (3.5ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" WHERE "cavy_page_templates"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_string_field.html.erb (0.8ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_text_field.html.erb (2.4ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/_page_localized_picture_field.html.erb (3.2ms) Cavy::PageTemplate Load (0.5ms) SELECT "cavy_page_templates".* FROM "cavy_page_templates" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/admin_pages/edit.html.erb within layouts/cavy/admin_layout (96.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/cavy/shared/_admin_locale_links.html.haml (6.2ms) Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_header.html.erb (30.8ms) Cavy::ItemSection Load (0.5ms) SELECT "cavy_item_sections".* FROM "cavy_item_sections" Rendered /Users/thomasmuntaner/Projects/Websites/cavy/app/views/layouts/cavy/_admin_sidebar.html.erb (8.0ms) Completed 200 OK in 337ms (Views: 296.1ms | ActiveRecord: 2.9ms)