(84.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB  (40.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`  (45.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB  (32.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`) ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`  (0.3ms) SELECT * FROM schema_migrations WHERE version = '20150224155212' LIMIT 1  (21.3ms) CREATE TABLE `family_gallery_users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `first_name` varchar(255), `last_name` varchar(255), `email` varchar(255) DEFAULT '' NOT NULL, `encrypted_password` varchar(255) DEFAULT '' NOT NULL, `reset_password_token` varchar(255), `reset_password_sent_at` datetime, `remember_created_at` datetime, `sign_in_count` int(11) DEFAULT 0 NOT NULL, `current_sign_in_at` datetime, `last_sign_in_at` datetime, `current_sign_in_ip` varchar(255), `last_sign_in_ip` varchar(255), `confirmation_token` varchar(255), `confirmed_at` datetime, `confirmation_sent_at` datetime, `unconfirmed_email` varchar(255), `failed_attempts` int(11) DEFAULT 0 NOT NULL, `unlock_token` varchar(255), `locked_at` datetime, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (19.6ms) CREATE UNIQUE INDEX `index_family_gallery_users_on_email` ON `family_gallery_users` (`email`)   (53.6ms) CREATE UNIQUE INDEX `index_family_gallery_users_on_reset_password_token` ON `family_gallery_users` (`reset_password_token`)  (43.6ms) CREATE UNIQUE INDEX `index_family_gallery_users_on_confirmation_token` ON `family_gallery_users` (`confirmation_token`)   (57.3ms) CREATE UNIQUE INDEX `index_family_gallery_users_on_unlock_token` ON `family_gallery_users` (`unlock_token`)  (3.8ms) INSERT INTO schema_migrations (version) VALUES ('20150224155212')  (0.3ms) SELECT * FROM schema_migrations WHERE version = '20150224155422' LIMIT 1  (42.4ms) CREATE TABLE `family_gallery_groups` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (29.1ms) CREATE TABLE `family_gallery_group_translations` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `family_gallery_group_id` int(11) NOT NULL, `locale` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (24.2ms) ALTER TABLE `family_gallery_group_translations` ADD `name` varchar(255)  (59.9ms) ALTER TABLE `family_gallery_group_translations` ADD `description` text  (48.9ms) CREATE INDEX `index_c7c2d0e178c1bd38d1d9010438b10c5b4240a1db` ON `family_gallery_group_translations` (`family_gallery_group_id`)   (53.8ms) CREATE INDEX `index_family_gallery_group_translations_on_locale` ON `family_gallery_group_translations` (`locale`)  (0.4ms) INSERT INTO schema_migrations (version) VALUES ('20150224155422')  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150224155704' LIMIT 1  (49.2ms) CREATE TABLE `family_gallery_pictures` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_owner_id` int(11), `user_uploaded_id` int(11), `taken_at` datetime, `width` int(11), `height` int(11), `latitude` decimal(10,8), `longitude` decimal(10,8), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (25.3ms) CREATE INDEX `index_family_gallery_pictures_on_user_owner_id` ON `family_gallery_pictures` (`user_owner_id`)  (54.2ms) CREATE INDEX `index_family_gallery_pictures_on_user_uploaded_id` ON `family_gallery_pictures` (`user_uploaded_id`)   (54.8ms) CREATE INDEX `index_family_gallery_pictures_on_taken_at` ON `family_gallery_pictures` (`taken_at`)  (51.0ms) CREATE INDEX `index_family_gallery_pictures_on_latitude` ON `family_gallery_pictures` (`latitude`)   (49.5ms) CREATE INDEX `index_family_gallery_pictures_on_longitude` ON `family_gallery_pictures` (`longitude`)  (65.7ms) ALTER TABLE `family_gallery_pictures` ADD `image_file_name` varchar(255)  (86.4ms) ALTER TABLE `family_gallery_pictures` ADD `image_content_type` varchar(255)  (79.4ms) ALTER TABLE `family_gallery_pictures` ADD `image_file_size` int(11)  (91.1ms) ALTER TABLE `family_gallery_pictures` ADD `image_updated_at` datetime  (46.2ms) CREATE TABLE `family_gallery_picture_translations` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `family_gallery_picture_id` int(11) NOT NULL, `locale` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (28.5ms) ALTER TABLE `family_gallery_picture_translations` ADD `title` varchar(255)  (64.9ms) ALTER TABLE `family_gallery_picture_translations` ADD `description` text  (46.4ms) CREATE INDEX `index_832f502cff7d47b4d637c290646c30a7e18d7e2f` ON `family_gallery_picture_translations` (`family_gallery_picture_id`)  (36.1ms) CREATE INDEX `index_family_gallery_picture_translations_on_locale` ON `family_gallery_picture_translations` (`locale`)   (0.3ms) INSERT INTO schema_migrations (version) VALUES ('20150224155704')  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150224180931' LIMIT 1  (41.8ms) CREATE TABLE `family_gallery_user_roles` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `role` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (20.0ms) CREATE INDEX `index_family_gallery_user_roles_on_user_id` ON `family_gallery_user_roles` (`user_id`)   (45.0ms) CREATE UNIQUE INDEX `index_family_gallery_user_roles_on_user_id_and_role` ON `family_gallery_user_roles` (`user_id`, `role`)  (0.5ms) INSERT INTO schema_migrations (version) VALUES ('20150224180931')  (0.6ms) SELECT * FROM schema_migrations WHERE version = '20150224184005' LIMIT 1  (43.9ms) CREATE TABLE `family_gallery_group_picture_links` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `group_id` int(11), `picture_id` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (14.5ms) CREATE INDEX `index_family_gallery_group_picture_links_on_group_id` ON `family_gallery_group_picture_links` (`group_id`)  (44.1ms) CREATE INDEX `index_family_gallery_group_picture_links_on_picture_id` ON `family_gallery_group_picture_links` (`picture_id`)   (38.0ms) CREATE UNIQUE INDEX `unique_group_and_picture` ON `family_gallery_group_picture_links` (`group_id`, `picture_id`)  (0.4ms) INSERT INTO schema_migrations (version) VALUES ('20150224184005')  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150301144620' LIMIT 1  (33.6ms) CREATE TABLE `family_gallery_user_taggings` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `picture_id` int(11), `user_id` int(11), `tagged_by_id` int(11), `position_top` decimal(10,2), `position_left` decimal(10,2), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (15.1ms) CREATE INDEX `index_family_gallery_user_taggings_on_picture_id` ON `family_gallery_user_taggings` (`picture_id`)  (48.3ms) CREATE INDEX `index_family_gallery_user_taggings_on_user_id` ON `family_gallery_user_taggings` (`user_id`)   (42.6ms) CREATE INDEX `index_family_gallery_user_taggings_on_tagged_by_id` ON `family_gallery_user_taggings` (`tagged_by_id`)  (0.5ms) INSERT INTO schema_migrations (version) VALUES ('20150301144620')  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150301144620' LIMIT 1 ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations` Started GET "/" for 127.0.0.1 at 2015-05-08 09:57:51 +0200 Started GET "/family_gallery" for 127.0.0.1 at 2015-05-08 09:57:51 +0200 Processing by FamilyGallery::WelcomeController#index as HTML  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 7 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (61.9ms) Completed 200 OK in 965ms (Views: 933.5ms | ActiveRecord: 5.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for 127.0.0.1 at 2015-05-08 09:57:52 +0200  (0.3ms) SELECT * FROM schema_migrations WHERE version = '20150224155212' LIMIT 1  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150224155422' LIMIT 1  (0.3ms) SELECT * FROM schema_migrations WHERE version = '20150224155704' LIMIT 1  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150224180931' LIMIT 1  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150224184005' LIMIT 1  (0.2ms) SELECT * FROM schema_migrations WHERE version = '20150301144620' LIMIT 1  (0.1ms) SELECT * FROM schema_migrations WHERE version = '20150301144620' LIMIT 1  (0.1ms) SELECT * FROM schema_migrations WHERE version = '20150508081950' LIMIT 1  (73.7ms) ALTER TABLE `family_gallery_groups` ADD `user_owner_id` int(11) AFTER `id`  (40.8ms) CREATE INDEX `index_family_gallery_groups_on_user_owner_id` ON `family_gallery_groups` (`user_owner_id`)  (0.5ms) INSERT INTO schema_migrations (version) VALUES ('20150508081950') ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` Started GET "/" for ::1 at 2015-07-24 09:14:38 +0200 Started GET "/family_gallery" for ::1 at 2015-07-24 09:14:38 +0200 Processing by FamilyGallery::WelcomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12)  (44.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 7 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (374.6ms) Completed 200 OK in 1240ms (Views: 921.8ms | ActiveRecord: 288.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:14:40 +0200 Started GET "/family_gallery" for ::1 at 2015-07-24 09:16:42 +0200 Processing by FamilyGallery::WelcomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12)  (0.8ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=0) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (92.5ms) Completed 200 OK in 608ms (Views: 562.2ms | ActiveRecord: 13.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:16:42 +0200 Started GET "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:16:44 +0200 Processing by FamilyGallery::SessionsController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (19.9ms) Completed 200 OK in 121ms (Views: 62.7ms | ActiveRecord: 37.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:16:44 +0200 Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:16:46 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FmslwzyXnpoFb3s1uWwFrW4CirZCtbnAwLfaOnZf2ZW0OYKEgSPeevpF4sPUJIZxqqb0hmx9BjugNL5JHhbvJQ==", "family_gallery_user"=>{"email"=>"k@spernj.org", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (12.5ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'k@spernj.org' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 Completed 401 Unauthorized in 24ms (ActiveRecord: 12.5ms) Processing by FamilyGallery::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FmslwzyXnpoFb3s1uWwFrW4CirZCtbnAwLfaOnZf2ZW0OYKEgSPeevpF4sPUJIZxqqb0hmx9BjugNL5JHhbvJQ==", "family_gallery_user"=>{"email"=>"k@spernj.org", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (3.0ms) Completed 200 OK in 97ms (Views: 33.2ms | ActiveRecord: 0.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:16:46 +0200 Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:16:54 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nC/S9OvWot3zJWzaDQx+w83aXjh0FLV+eUPy883bPVc+fXWzVmLiPQwP9SxgRP0fCX4gCFrcCoUZwJaApZIL5w==", "family_gallery_user"=>{"email"=>"k@spernj.org", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'k@spernj.org' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 Completed 401 Unauthorized in 2ms (ActiveRecord: 0.3ms) Processing by FamilyGallery::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nC/S9OvWot3zJWzaDQx+w83aXjh0FLV+eUPy883bPVc+fXWzVmLiPQwP9SxgRP0fCX4gCFrcCoUZwJaApZIL5w==", "family_gallery_user"=>{"email"=>"k@spernj.org", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (3.1ms) Completed 200 OK in 97ms (Views: 36.7ms | ActiveRecord: 0.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:16:54 +0200 Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:17:10 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I1ozDyag07LNxnz0kuhFdmeSDlLdpIS+I2lf5PbgXzGBCJRImxSTUjLs5QL/oMaqozZwYvNsO0VD6juXnqlpgQ==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (0.5ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 Completed 401 Unauthorized in 3ms (ActiveRecord: 0.5ms) Processing by FamilyGallery::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I1ozDyag07LNxnz0kuhFdmeSDlLdpIS+I2lf5PbgXzGBCJRImxSTUjLs5QL/oMaqozZwYvNsO0VD6juXnqlpgQ==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (3.2ms) Completed 200 OK in 93ms (Views: 32.4ms | ActiveRecord: 0.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:17:11 +0200 Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:17:17 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jc28UfGj1drBuwbyle6BCC99GScM0TCNBrHDkxUgekgvnxsWTBeVOj6RnwT4pgLU69lnFyIZj3ZmMqfgfWlM+A==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 Completed 401 Unauthorized in 2ms (ActiveRecord: 0.3ms) Processing by FamilyGallery::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jc28UfGj1drBuwbyle6BCC99GScM0TCNBrHDkxUgekgvnxsWTBeVOj6RnwT4pgLU69lnFyIZj3ZmMqfgfWlM+A==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (3.6ms) Completed 200 OK in 94ms (Views: 30.3ms | ActiveRecord: 0.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:17:17 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:17:17 +0200 ActiveRecord::SchemaMigration Load (38.0ms) SELECT `schema_migrations`.* FROM `schema_migrations` Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:17:32 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Zxj1EsKPyfL1wS3+GBZVnE2bf01f6F+VyZ5tXRzrknjFSlJVfzuJEgrrtAh1XtZAiT8BfXEg4G6pHQkudKKkyA==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (0.6ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 Completed 401 Unauthorized in 4ms (ActiveRecord: 0.6ms) Processing by FamilyGallery::SessionsController#new as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Zxj1EsKPyfL1wS3+GBZVnE2bf01f6F+VyZ5tXRzrknjFSlJVfzuJEgrrtAh1XtZAiT8BfXEg4G6pHQkudKKkyA==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (3.7ms) Completed 200 OK in 97ms (Views: 36.0ms | ActiveRecord: 0.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:17:32 +0200 Started GET "/" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/family_gallery" for ::1 at 2015-07-24 09:17:34 +0200 Processing by FamilyGallery::WelcomeController#index as HTML  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=0) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (2.9ms) Completed 200 OK in 50ms (Views: 47.8ms | ActiveRecord: 0.4ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:17:34 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:17:34 +0200 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'k@spernj.org' LIMIT 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' LIMIT 1  (0.2ms) BEGIN FamilyGallery::User Exists (11.6ms) SELECT 1 AS one FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = BINARY 'admin@example.com' LIMIT 1 SQL (40.9ms) INSERT INTO `family_gallery_users` (`email`, `first_name`, `last_name`, `encrypted_password`, `created_at`, `updated_at`) VALUES ('admin@example.com', 'Admin', 'User', '$2a$10$eHCIOP2EC0.TZVnC.RKM8.Sk3J/1RmQgVRe6wQ6Fl3gkU.zEcnJg6', '2015-07-24 07:18:50', '2015-07-24 07:18:50')  (0.7ms) COMMIT FamilyGallery::UserRole Load (2.9ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 AND `family_gallery_user_roles`.`role` = 'administrator' LIMIT 1  (0.1ms) BEGIN FamilyGallery::UserRole Exists (18.9ms) SELECT 1 AS one FROM `family_gallery_user_roles` WHERE (`family_gallery_user_roles`.`role` = BINARY 'administrator' AND `family_gallery_user_roles`.`user_id` = 1) LIMIT 1 SQL (2.3ms) INSERT INTO `family_gallery_user_roles` (`role`, `user_id`, `created_at`, `updated_at`) VALUES ('administrator', 1, '2015-07-24 07:18:50', '2015-07-24 07:18:50')  (0.4ms) COMMIT Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-07-24 09:18:55 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WIMDrqtuO/xz88y7s65A/DxNlIEivhm3MPOenonbXkH60aTpFtp7HIzZVU3e5sMg+OnqsQx2pkxQcPrt4ZJo8Q==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1  (0.1ms) BEGIN SQL (5.0ms) UPDATE `family_gallery_users` SET `remember_created_at` = '2015-07-24 07:18:55', `updated_at` = '2015-07-24 07:18:55' WHERE `family_gallery_users`.`id` = 1  (0.3ms) COMMIT  (0.1ms) BEGIN SQL (12.2ms) UPDATE `family_gallery_users` SET `last_sign_in_at` = '2015-07-24 07:18:55', `current_sign_in_at` = '2015-07-24 07:18:55', `last_sign_in_ip` = '::1', `current_sign_in_ip` = '::1', `sign_in_count` = 1, `updated_at` = '2015-07-24 07:18:55' WHERE `family_gallery_users`.`id` = 1  (10.4ms) COMMIT Redirected to http://localhost:3000/family_gallery/ Completed 302 Found in 292ms (ActiveRecord: 31.3ms) Started GET "/family_gallery/" for ::1 at 2015-07-24 09:18:55 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (12.5ms) Completed 200 OK in 372ms (Views: 286.8ms | ActiveRecord: 15.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:18:56 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-07-24 09:18:57 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.html.haml within layouts/family_gallery/application (6.0ms) Completed 200 OK in 47ms (Views: 39.1ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:18:58 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:18:58 +0200 Started GET "/family_gallery/groups/new" for 127.0.0.1 at 2015-07-24 09:19:00 +0200 Processing by FamilyGallery::GroupsController#new as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.4ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/_form.html.haml (93.0ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/new.html.haml within layouts/family_gallery/application (97.9ms) Completed 200 OK in 145ms (Views: 98.9ms | ActiveRecord: 34.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for 127.0.0.1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:19:00 +0200 Started POST "/family_gallery/groups" for ::1 at 2015-07-24 09:19:05 +0200 Processing by FamilyGallery::GroupsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"oEbcoBsBM+NnaJAE67uRWEDU7QsR/rw56cvU3tQZcD3+o3Hjq1x8xAk4RIACTdUCV0ewr3wCmWuBjid5Ykjb7Q==", "group"=>{"name"=>"Test", "description"=>""}, "commit"=>"Create Group"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN SQL (2.8ms) INSERT INTO `family_gallery_groups` (`created_at`, `updated_at`) VALUES ('2015-07-24 07:19:05', '2015-07-24 07:19:05') SQL (6.3ms) INSERT INTO `family_gallery_group_translations` (`locale`, `name`, `description`, `family_gallery_group_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', '', 1, '2015-07-24 07:19:05', '2015-07-24 07:19:05')  (0.4ms) COMMIT Redirected to http://localhost:3000/family_gallery/groups/1 Completed 302 Found in 31ms (ActiveRecord: 10.3ms) Started GET "/family_gallery/groups/1" for ::1 at 2015-07-24 09:19:05 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (7.0ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (2.8ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (47.0ms) Completed 200 OK in 83ms (Views: 45.4ms | ActiveRecord: 31.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for 127.0.0.1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:19:05 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-07-24 09:19:07 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (43.9ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.html.haml within layouts/family_gallery/application (46.7ms) Completed 200 OK in 98ms (Views: 45.6ms | ActiveRecord: 30.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:19:07 +0200 Started GET "/family_gallery/groups/1/multiple_pictures/new" for ::1 at 2015-07-24 09:19:11 +0200 Processing by FamilyGallery::MultiplePicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/multiple_pictures/new.html.haml within layouts/family_gallery/application (3.9ms) Completed 200 OK in 38ms (Views: 32.3ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:19:11 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:19:11 +0200 Started GET "/family_gallery/awesome_translations" for 127.0.0.1 at 2015-07-24 09:19:39 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.7ms) Completed 200 OK in 111ms (Views: 109.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-07-24 09:19:39 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:39 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:19:39 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:19:39 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:19:43 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (197.5ms) Completed 200 OK in 210ms (Views: 209.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:19:43 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:19:43 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:43 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-07-24 09:19:43 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s" for 127.0.0.1 at 2015-07-24 09:19:47 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (5.6ms) Completed 200 OK in 21ms (Views: 16.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-07-24 09:19:47 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:19:47 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:19:47 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:19:47 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:20:30 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (224.6ms) Completed 200 OK in 481ms (Views: 479.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:20:30 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:20:30 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:20:30 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:20:30 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:20:44 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (7.1ms) Completed 200 OK in 24ms (Views: 19.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:20:44 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:20:44 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:20:44 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:20:44 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:20:58 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/wx4ph4V66i81gWDCGklUfVKTBFfhKTXzq/KlJ1XgVqh6dXlrkikj9KG0Qfhn2EL4tkRtTJ4gYWm6jkzKwYqig==", "t"=>{"family_gallery.groups.edit.edit_group"=>{"da"=>"Rediger gruppe", "de"=>"Gruppe bearbeiten", "en"=>"Edit group"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s Completed 302 Found in 12ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:20:58 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL2VkaXQuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (48.5ms) Completed 200 OK in 67ms (Views: 60.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:20:58 +0200 Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:20:58 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:20:58 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:20:58 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:21:15 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (4.0ms) Completed 200 OK in 23ms (Views: 18.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:21:15 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:21:15 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:21:15 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:21:15 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:21:22 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c9qHWzPO4sjkFsjqwkt5S9sO6sGl4IhndFj6/YU+t6otPyoYg5Ot74pGHG4rvT0RzJ23ZcgcrTUcHQlaM28ceg==", "t"=>{"family_gallery.groups.new.new_group"=>{"da"=>"Ny gruppe", "de"=>"Neue Gruppe", "en"=>"New group"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw= Completed 302 Found in 11ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:21:22 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL25ldy5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (44.3ms) Completed 200 OK in 74ms (Views: 67.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:21:22 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:21:22 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:21:22 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:21:22 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:21:29 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (171.8ms) Completed 200 OK in 187ms (Views: 186.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:21:29 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:21:29 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:21:29 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:21:29 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:21:43 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (9.5ms) Completed 200 OK in 29ms (Views: 24.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:21:43 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:21:43 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:21:43 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:21:43 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:22:07 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wxrFj/0xndIGxNxQ88DY79dzHhL6cTT1/ffeptkFnyGd/2jMTWzS9WiUCNQaNpy1wOBDtpeNEaeVsi0Bb1Q08Q==", "t"=>{"family_gallery.groups.show.show_group"=>{"da"=>"Vis gruppe", "de"=>"Gruppe anzeigen", "en"=>"Show group"}, "family_gallery.groups.show.edit_group"=>{"da"=>"Rediger gruppe", "de"=>"Gruppe bearbeiten", "en"=>"Edit group"}, "family_gallery.groups.show.new_picture"=>{"da"=>"Nyt billede", "de"=>"Neues Bild", "en"=>"New picture"}, "family_gallery.groups.show.upload_multiple"=>{"da"=>"Upload flere", "de"=>"Mehr hochladen", "en"=>"Upload multiple"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s Completed 302 Found in 23ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:22:07 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvZ3JvdXBzL3Nob3cuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (52.0ms) Completed 200 OK in 73ms (Views: 67.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:22:07 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:22:07 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:22:07 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:22:07 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:22:18 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (169.8ms) Completed 200 OK in 184ms (Views: 183.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:22:18 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:22:18 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:22:18 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:22:18 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:22:22 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (4.3ms) Completed 200 OK in 25ms (Views: 17.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:22:22 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:22:22 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:22:22 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:22:22 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:22:36 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YnZiQhDlRt9STFhcCSbX5hCxMWv6DwjYajnxr1fK+L08k88BoLgJ+DwcjNjg0JO8ByJsz5fzLYoCfAII4ZtTbQ==", "t"=>{"family_gallery.multiple_pictures.new.upload_multiple_pictures"=>{"da"=>"Upload flere billeder", "de"=>"Mehr Bilder hochladen", "en"=>"Upload multiple pictures"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA== Completed 302 Found in 9ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:22:36 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (41.8ms) Completed 200 OK in 59ms (Views: 53.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:22:36 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:22:36 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:22:36 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:22:36 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:23:01 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+CEkNfgSb6f7pNbO8qLzsZAGFK2nKglnpYUnHQVrWUymxIl2SE8ggJX0AkobVLfrh5VJCcrWLDXNwNS6szrynA==", "t"=>{"family_gallery.multiple_pictures.new.upload_multiple_pictures"=>{"da"=>"Upload flere billeder", "de"=>"Mehrere Bilder hochladen", "en"=>"Upload multiple pictures"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA== Completed 302 Found in 10ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:23:01 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvbXVsdGlwbGVfcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (43.3ms) Completed 200 OK in 61ms (Views: 55.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:01 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:01 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:01 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:01 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:23:06 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (180.0ms) Completed 200 OK in 193ms (Views: 192.7ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:06 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:06 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:06 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:06 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:23:12 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (3.1ms) Completed 200 OK in 22ms (Views: 16.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:12 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:12 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:12 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:12 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:23:32 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"wdZtxw6hnLuAEqD+XuJPLmz+adYb52NZPUdtWk7fAJSfM8CEvvzTnO5CdHq3FAt0e200cnYbRgtVAp79+I6rRA==", "t"=>{"family_gallery.pictures.edit.edit_picture"=>{"da"=>"Rediger billede: %{title}", "de"=>"Bild bearbeiten: %{title}", "en"=>"Edit picture: %{title}"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw= Completed 302 Found in 13ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:23:32 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvZWRpdC5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (46.0ms) Completed 200 OK in 75ms (Views: 59.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:32 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:32 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:32 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:32 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:23:38 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (4.0ms) Completed 200 OK in 25ms (Views: 19.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:38 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:38 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:38 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:38 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:23:49 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Jvg/pbgoFy9Np6RPbxEBVEpGFxj9OywkNW0lHPQP1IV4HZLmCHVYCCP3cMuG50UOXdVKvJDHCXZdKNa7Ql5/VQ==", "t"=>{"family_gallery.pictures.new.add_new_picture"=>{"da"=>"Tilføj nyt billede", "de"=>"Neues Bild hinzufügen", "en"=>"Add new picture"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA== Completed 302 Found in 11ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:23:49 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (44.1ms) Completed 200 OK in 63ms (Views: 56.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:49 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:49 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:49 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:50 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:23:53 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (170.3ms) Completed 200 OK in 184ms (Views: 183.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:53 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:53 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:53 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:53 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:23:56 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (19.0ms) Completed 200 OK in 41ms (Views: 35.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:23:56 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:23:56 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:23:56 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:23:56 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:27:14 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rYv50MhEvmHOVN1kxNs9xy1O6Nic4uKkqL8CMW7icNHzblSTeBnxRqAECeAtLXmdOt21fPEex/bA+vGW2LPbAQ==", "t"=>{"family_gallery.pictures.show.show_picture"=>{"da"=>"Vis billede: %{title}", "de"=>"Bild anzeigen: %{title}", "en"=>"Show picture: %{title}"}, "family_gallery.pictures.show.edit_picture"=>{"da"=>"Rediger billede", "de"=>"Bild bearbeiten", "en"=>"Edit picture"}, "family_gallery.pictures.show.add_tagging"=>{"da"=>"Tilføj tagging", "de"=>"Markierungen hinzufügen", "en"=>"Add tagging"}, "family_gallery.pictures.show.previous"=>{"da"=>"Forrige", "de"=>"Vorheriges", "en"=>"Previous"}, "family_gallery.pictures.show.next"=>{"da"=>"Næste", "de"=>"Nächstes", "en"=>"Next"}, "family_gallery.pictures.show.tagged_users"=>{"da"=>"Taggede brugere", "de"=>"Markierte Benutzer", "en"=>"Tagged users"}, "family_gallery.pictures.show.no_users_was_tagged"=>{"da"=>"Der er ikke blevet tagget nogle brugere", "de"=>"Es wurden keine Benutzer markiert", "en"=>"No users have been tagged"}, "family_gallery.pictures.show.google_map"=>{"da"=>"Google Map", "de"=>"Google Map", "en"=>"Google Map"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw= Completed 302 Found in 57ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:27:14 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvcGljdHVyZXMvc2hvdy5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (60.4ms) Completed 200 OK in 79ms (Views: 72.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:27:14 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:27:14 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:27:14 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:27:14 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:27:18 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (193.2ms) Completed 200 OK in 206ms (Views: 205.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:27:19 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:27:19 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:27:19 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:27:19 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:27:21 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (4.6ms) Completed 200 OK in 31ms (Views: 23.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:27:21 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:27:21 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:27:21 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:27:21 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:28:01 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qOPh9tA0NKHRyWRnDepWjzPQ4oDSHLtXXU5tmDVqzhX2Bky1YGl7hr+ZsOPkHBLVJEO/JL/gngU1C54/gztlxQ==", "t"=>{"family_gallery.user_roles.new.new_user_role_for"=>{"da"=>"Ny brugerrolle for %{user_name}", "de"=>"Neue Benutzerrolle für %{user_name}", "en"=>"New user role for %{user_name}"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s Completed 302 Found in 9ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:28:01 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl9yb2xlcy9uZXcuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (51.5ms) Completed 200 OK in 70ms (Views: 63.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:01 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:01 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:01 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:01 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:28:05 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (216.5ms) Completed 200 OK in 229ms (Views: 228.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:05 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:05 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:05 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:05 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:28:10 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (2.9ms) Completed 200 OK in 21ms (Views: 15.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:11 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:11 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:11 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:11 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:28:28 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"MqNGfcuDHh2JvIUAwSuB3gUdZxp/34LOO1sq+MlHp/FsRus+e95ROufsUYQo3cWEEo46vhIjp5xTHtlffxYMIQ==", "t"=>{"family_gallery.user_taggings.new.new_user_tagging"=>{"da"=>"Ny brugertagging", "de"=>"Neue Benutzermarkierung", "en"=>"New user tagging"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s Completed 302 Found in 10ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s" for ::1 at 2015-07-24 09:28:28 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5ncy9uZXcuaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (43.1ms) Completed 200 OK in 62ms (Views: 56.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:28 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:28 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:28 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:28 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:28:36 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (256.7ms) Completed 200 OK in 271ms (Views: 270.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:37 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:37 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:37 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:37 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:28:38 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (2.9ms) Completed 200 OK in 21ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:38 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:38 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:39 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:39 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:28:59 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"U02A4lna8TnGlokt0ZNkcdwfFvOV8AJZ1TI/+3URy98NqC2h6Ye+HqjGXak4ZSAry4xLV/gMJwu9d8xcw0BgDw==", "t"=>{"family_gallery.users.edit.edit_user"=>{"da"=>"Rediger bruger: %{name}", "de"=>"Neuer Benutzer: %{name}", "en"=>"Edit user: %{name}"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw= Completed 302 Found in 11ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:28:59 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvZWRpdC5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (43.4ms) Completed 200 OK in 60ms (Views: 54.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:28:59 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:28:59 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:28:59 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:28:59 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:29:02 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (214.3ms) Completed 200 OK in 229ms (Views: 228.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:02 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:03 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:03 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:03 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s" for ::1 at 2015-07-24 09:29:08 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (5.0ms) Completed 200 OK in 23ms (Views: 17.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:08 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:08 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:08 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:08 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s" for ::1 at 2015-07-24 09:29:25 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"mQd7VOv66QZk4nRAqyE1/w3I3beKcsbn1IiTpHvczoXH4tYXW6emIQqyoMRC13GlGluAE+eO47W8zWADzY1lVQ==", "t"=>{"family_gallery.users.index.no_users_were_found"=>{"da"=>"Der blev ikke fundet nogle brugere", "de"=>"Es wurden keine Benutzer gefunden", "en"=>"No users were found"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s Completed 302 Found in 16ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s" for ::1 at 2015-07-24 09:29:25 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvaW5kZXguaHRtbC5oYW1s"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (84.0ms) Completed 200 OK in 103ms (Views: 95.7ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:26 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:26 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:26 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:26 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:29:29 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (167.8ms) Completed 200 OK in 181ms (Views: 180.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:29 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:29 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:29 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:29 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:29:33 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (2.8ms) Completed 200 OK in 19ms (Views: 14.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:33 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:33 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:33 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:33 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:29:38 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YqC+Qf3S9ypCXOPsRePGc8Ghn2aSWPc+2h41NvLdYFg8RRMCTY+4DSwMN2isFYIp1jLCwv+k0myyW8aRRIzLiA==", "t"=>{"family_gallery.users.new.new_user"=>{"da"=>"Ny bruger", "de"=>"Neuer Benutzer", "en"=>"New user"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA=="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA== Completed 302 Found in 10ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA==" for ::1 at 2015-07-24 09:29:38 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvbmV3Lmh0bWwuaGFtbA=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (84.9ms) Completed 200 OK in 106ms (Views: 99.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:38 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:38 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:38 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:38 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:29:43 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (169.5ms) Completed 200 OK in 185ms (Views: 184.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:43 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:43 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:43 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:43 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:29:44 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (46.3ms) Completed 200 OK in 67ms (Views: 61.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:29:44 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:29:44 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:29:44 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:29:44 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:32:11 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FiMprlt4zKstu+4VcmC7UCjjqsENbYGnkOyhTMLq9vBIxoTt6yWDjEPrOpGblv8KP3D3ZWCRpPX4qVLrdLtdIA==", "t"=>{"family_gallery.users.show.show_user"=>{"da"=>"Vis bruger: %{user_name}", "de"=>"Benutzer anzeigen: %{user_name}", "en"=>"Show user: %{user_name}"}, "family_gallery.users.show.tagged_on"=>{"da"=>"Tagget på", "de"=>"Markiert auf", "en"=>"Tagged on"}, "family_gallery.users.show.user_hasnt_been_tagged_on_any_pictures"=>{"da"=>"Denne bruger er ikke blevet tagget på nogle billeder", "de"=>"Dieser Benutzer wurde auf keinem Bild markiert", "en"=>"This user hasn't been tagged on any pictures"}, "family_gallery.users.show.uploaded_pictures"=>{"da"=>"Uploadede billeder", "de"=>"Hochgeladene Bilder", "en"=>"Uploaded pictures"}, "family_gallery.users.show.this_user_havent_uploaded_any_pictures"=>{"da"=>"Denne bruger har ikke uploadet nogle billeder", "de"=>"Dieser Benutzer hat keine Bilder hochgeladen", "en"=>"This user hasn't uploaded any pictures"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw= Completed 302 Found in 26ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:32:11 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvdXNlcnMvc2hvdy5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (52.6ms) Completed 200 OK in 69ms (Views: 63.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:32:11 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:32:11 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:32:11 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:32:11 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:32:15 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (202.1ms) Completed 200 OK in 214ms (Views: 214.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:32:15 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:32:15 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:32:15 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:32:15 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:32:18 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (6.2ms) Completed 200 OK in 30ms (Views: 22.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:32:18 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:32:18 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:32:18 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:32:18 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:34:13 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"AhC6VBX9FPnb9KANZYh0Y7Pp3ExaERT/gNaTBJUCudhc9RcXpaBb3rWkdImMfjA5pHqB6DftMa3ok2CjI1MSCA==", "t"=>{"family_gallery.welcome.index.welcome"=>{"da"=>"Velkommen", "de"=>"Willkommen", "en"=>"Welcome"}, "family_gallery.welcome.index.latest_updated_groups"=>{"da"=>"Seneste opdaterede grupper", "de"=>"Die zuletzt aktualisierten Gruppen", "en"=>"Latest updated groups"}, "family_gallery.welcome.index.no_groups_has_been_created_yet"=>{"da"=>"Der er ikke blevet oprettet nogle grupper endnu", "de"=>"Es wurden noch keine Gruppen erstellt", "en"=>"No groups has been created yet"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw= Completed 302 Found in 15ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:34:13 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvZmFtaWx5X2dhbGxlcnkvd2VsY29tZS9pbmRleC5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (89.6ms) Completed 200 OK in 107ms (Views: 101.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:34:13 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:34:13 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:34:13 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:34:13 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:34:17 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (164.9ms) Completed 200 OK in 177ms (Views: 176.7ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:34:17 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:34:17 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:34:17 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:34:17 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:34:23 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (12.1ms) Completed 200 OK in 30ms (Views: 24.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:34:24 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:34:24 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:34:24 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:34:24 +0200 Started PUT "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:34:52 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"v/NNmf6djggF6Oy/0OW/KPMHcLDU1gLwNJaA4bP/+tnhFuDaTsDBL2u4ODs5E/ty5JQtFLkqJ6Jc03NGBa5RCQ==", "t"=>{"layouts.family_gallery.application.frontpage"=>{"da"=>"Forside", "de"=>"Startseite", "en"=>"Frontpage"}, "layouts.family_gallery.application.translations"=>{"da"=>"Oversættelser", "de"=>"Übersetzungen", "en"=>"Translations"}, "layouts.family_gallery.application.sign_out"=>{"da"=>"Log ud", "de"=>"Ausloggen", "en"=>"Sign out"}, "layouts.family_gallery.application.sign_in"=>{"da"=>"Log ind", "de"=>"Einloggen", "en"=>"Sign in"}}, "commit"=>"Save", "handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw= Completed 302 Found in 21ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/erb_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw=" for ::1 at 2015-07-24 09:34:52 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"erb_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvdmlld3MvbGF5b3V0cy9mYW1pbHlfZ2FsbGVyeS9hcHBsaWNhdGlvbi5odG1sLmhhbWw="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (145.3ms) Completed 200 OK in 162ms (Views: 156.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:34:52 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:34:53 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:34:53 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:34:53 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:34:54 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (168.9ms) Completed 200 OK in 181ms (Views: 180.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:34:55 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:34:55 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:34:55 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:34:55 +0200 Started GET "/family_gallery/awesome_translations/handlers/erb_handler" for ::1 at 2015-07-24 09:35:09 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"erb_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (203.4ms) Completed 200 OK in 217ms (Views: 216.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:35:09 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:35:09 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:35:10 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:35:10 +0200 Started GET "/family_gallery/awesome_translations/handlers/global_handler" for ::1 at 2015-07-24 09:35:10 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"global_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (1048.9ms) Completed 200 OK in 1062ms (Views: 1061.1ms | ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-07-24 09:35:11 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (960.1ms) Completed 200 OK in 975ms (Views: 973.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:35:12 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (168.1ms) Completed 200 OK in 188ms (Views: 187.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:35:12 +0200 Started GET "/family_gallery/awesome_translations/handlers/global_handler/groups/global" for ::1 at 2015-07-24 09:35:18 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"global_handler", "id"=>"global"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (313.4ms) Completed 200 OK in 326ms (Views: 325.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:35:18 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:35:18 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:35:18 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:35:18 +0200 Started PUT "/family_gallery/awesome_translations/handlers/global_handler/groups/global" for ::1 at 2015-07-24 09:36:51 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"z4P1rt1ck05IWlvZo6QKW/PDFlN/2FHg0UmXgrebD1KRZljtbQHcaSYKj11KUk4B5FBL9xIkdLK5DGQlAcqkgg==", "t"=>{"add_new"=>{"da"=>"Tilføj ny", "de"=>"Neu hinzufügen", "en"=>"Add new"}, "no_results"=>{"da"=>"Ingen resultater", "de"=>"Keine Ergebnisse", "en"=>"No results"}, "save"=>{"da"=>"Gem", "de"=>"Speichern", "en"=>"Save"}, "delete"=>{"da"=>"Slet", "de"=>"Löschen", "en"=>"Delete"}, "are_you_sure"=>{"da"=>"Er du sikker?", "de"=>"Sind Sie sicher?", "en"=>"Are you sure?"}, "actions"=>{"da"=>"Muligheder", "de"=>"Möglichkeiten", "en"=>"Actions"}, "remove"=>{"da"=>"Fjern", "de"=>"Entfernen", "en"=>"Remove"}}, "commit"=>"Save", "handler_id"=>"global_handler", "id"=>"global"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/global_handler/groups/global Completed 302 Found in 390ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/global_handler/groups/global" for ::1 at 2015-07-24 09:36:51 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"global_handler", "id"=>"global"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (418.6ms) Completed 200 OK in 433ms (Views: 432.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:36:52 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:36:52 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:36:52 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:36:52 +0200 Started GET "/family_gallery/awesome_translations/handlers/global_handler" for ::1 at 2015-07-24 09:37:04 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"global_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (962.1ms) Completed 200 OK in 974ms (Views: 973.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:37:05 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:37:05 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:37:05 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:37:05 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-07-24 09:37:11 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (14.1ms) Completed 200 OK in 32ms (Views: 27.7ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:37:11 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:37:11 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:37:11 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:37:11 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-07-24 09:37:46 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qZLgfctJ0eyXKzlyaNTQ5VAzAVQLwjH671QvQ1BW6uD3d00+exSey/l77faBIpS/R6Bc8GY+FKiHEdzk5gdBMA==", "t"=>{"controllers.family_gallery.resources_controller.resource_was_saved"=>{"da"=>"Resource blev gemt.", "de"=>"Ressource wurde gespeichert.", "en"=>"Resource was saved."}, "controllers.family_gallery.resources_controller.resource_was_updated"=>{"da"=>"Resourcen blev opdateret.", "de"=>"Ressource wurde aktualisiert.", "en"=>"Resource was updated."}, "controllers.family_gallery.resources_controller.resource_was_deleted"=>{"da"=>"Resourcen blev slettet.", "de"=>"Ressource wurde gelöscht.", "en"=>"Resource was deleted."}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI= Completed 302 Found in 22ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-07-24 09:37:46 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (111.7ms) Completed 200 OK in 130ms (Views: 123.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:37:47 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:37:47 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:37:47 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:37:47 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-07-24 09:37:51 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (841.8ms) Completed 200 OK in 854ms (Views: 854.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:37:52 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:37:52 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:37:52 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:37:52 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-07-24 09:37:55 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (7.2ms) Completed 200 OK in 23ms (Views: 18.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:37:55 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:37:55 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:37:55 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:37:55 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-07-24 09:38:18 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"b3lvg1VLPyFkprx4Zxu187Y8d6GQgJz6xnOzb65FSAwxnMLA5RZwBgr2aPyO7fGpoa8qBf18uaiuNkDIGBTj3A==", "t"=>{"controllers.family_gallery.user_taggings_controller.tagging_was_saved"=>{"da"=>"Tagging blev gemt", "de"=>"Die Markierung wurde gespeichert", "en"=>"Tagging was saved"}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi Completed 302 Found in 13ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-07-24 09:38:18 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (56.6ms) Completed 200 OK in 72ms (Views: 67.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:19 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:19 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:19 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:19 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-07-24 09:38:21 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (862.8ms) Completed 200 OK in 875ms (Views: 874.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:22 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:22 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:22 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:22 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI=" for ::1 at 2015-07-24 09:38:28 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (5.5ms) Completed 200 OK in 23ms (Views: 18.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:28 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:28 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:28 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:28 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI=" for ::1 at 2015-07-24 09:38:35 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"EIVZbba/E3XuZDrqLDpBUwC7M7tnzkCVHVU0yP4KQsZOYPQuBuJcUoA07m7FzAUJFyhuHwoyZcd1EMdvSFvpFg==", "t"=>{"helpers.family_gallery.users_helper.no_user"=>{"da"=>"ingen bruger", "de"=>"kein Benutzer", "en"=>"no user"}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI= Completed 302 Found in 14ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI=" for ::1 at 2015-07-24 09:38:35 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvaGVscGVycy9mYW1pbHlfZ2FsbGVyeS91c2Vyc19oZWxwZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (92.5ms) Completed 200 OK in 111ms (Views: 104.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:36 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:36 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:36 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:36 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-07-24 09:38:39 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (862.6ms) Completed 200 OK in 875ms (Views: 874.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:40 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:40 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:40 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:40 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg==" for ::1 at 2015-07-24 09:38:43 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (5.3ms) Completed 200 OK in 27ms (Views: 20.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:43 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:43 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:43 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:43 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg==" for ::1 at 2015-07-24 09:38:50 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"74WenBipq1G8uK1n+73Jn6qsjArMnS+N1sXlkYQawR+xYDPfqPTkdtLoeeMSS43FvT/RrqFhCt++gBY2Mktqzw==", "t"=>{"models.family_gallery.user_role.administrator"=>{"da"=>"Administrator", "de"=>"Administrator", "en"=>"Administrator"}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg=="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg== Completed 302 Found in 10ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg==" for ::1 at 2015-07-24 09:38:50 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvbW9kZWxzL2ZhbWlseV9nYWxsZXJ5L3VzZXJfcm9sZS5yYg=="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (50.4ms) Completed 200 OK in 67ms (Views: 61.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:50 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:50 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:50 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:50 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-07-24 09:38:58 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (860.6ms) Completed 200 OK in 873ms (Views: 872.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:38:59 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:38:59 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:38:59 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:38:59 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::User" for ::1 at 2015-07-24 09:39:15 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::User"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (36.6ms) Completed 200 OK in 49ms (Views: 48.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:39:15 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:39:15 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:39:15 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:39:15 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::User" for ::1 at 2015-07-24 09:41:51 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zpCjWrtY5c63Zf6S45IyQvi3jH5cWtK0X2t8xQAUpEeQdQ4ZCwWq6dk1KhYKZHYY7yTR2jGm9+Y3Lo9itkUPlw==", "t"=>{"activerecord.models.family_gallery/user.one"=>{"da"=>"Bruger", "de"=>"Benutzer", "en"=>"User"}, "activerecord.models.family_gallery/user.other"=>{"da"=>"Brugere", "de"=>"Benutzer", "en"=>"Users"}, "activerecord.attributes.family_gallery/user.id"=>{"da"=>"ID", "de"=>"ID", "en"=>"ID"}, "activerecord.attributes.family_gallery/user.first_name"=>{"da"=>"Fornavn", "de"=>"Vorname", "en"=>"First name"}, "activerecord.attributes.family_gallery/user.last_name"=>{"da"=>"Efternavn", "de"=>"Nachname", "en"=>"Last name"}, "activerecord.attributes.family_gallery/user.email"=>{"da"=>"Email", "de"=>"E-Mail", "en"=>"Email"}, "activerecord.attributes.family_gallery/user.encrypted_password"=>"[FILTERED]", "activerecord.attributes.family_gallery/user.reset_password_token"=>"[FILTERED]", "activerecord.attributes.family_gallery/user.reset_password_sent_at"=>"[FILTERED]", "activerecord.attributes.family_gallery/user.remember_created_at"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.sign_in_count"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.current_sign_in_at"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.last_sign_in_at"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.current_sign_in_ip"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.last_sign_in_ip"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.confirmation_token"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.confirmed_at"=>{"da"=>"Bekræftet d.", "de"=>"Bestätigt am", "en"=>"Confirmed at"}, "activerecord.attributes.family_gallery/user.confirmation_sent_at"=>{"da"=>"Bekræftelsesmail sendt d.", "de"=>"Bestätigungsmail gesendet am", "en"=>"Confirmation mail sent at"}, "activerecord.attributes.family_gallery/user.unconfirmed_email"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.failed_attempts"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.unlock_token"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/user.locked_at"=>{"da"=>"Låst d.", "de"=>"", "en"=>"Locked at"}, "activerecord.attributes.family_gallery/user.created_at"=>{"da"=>"Oprettet d.", "de"=>"Erstellt am", "en"=>"Created at"}, "activerecord.attributes.family_gallery/user.updated_at"=>{"da"=>"Opdateret d.", "de"=>"Aktualisiert am", "en"=>"Updated at"}, "activerecord.attributes.family_gallery/user.owned_groups"=>{"da"=>"Ejede grupper", "de"=>"Eigene Gruppe", "en"=>"Owned groups"}, "activerecord.attributes.family_gallery/user.owned_pictures"=>{"da"=>"Ejedede billeder", "de"=>"Eigene Bilder", "en"=>"Owned pictures"}, "activerecord.attributes.family_gallery/user.pictures_tagged_on"=>{"da"=>"Tagget på billeder", "de"=>"Markiert auf Bildern", "en"=>"Tagged on pictures"}, "activerecord.attributes.family_gallery/user.user_roles"=>{"da"=>"Brugerroller", "de"=>"Benutzerrolle", "en"=>"User roles"}, "activerecord.attributes.family_gallery/user.user_taggings"=>{"da"=>"Brugertags", "de"=>"Benutzermarierungen", "en"=>"User taggings"}, "activerecord.attributes.family_gallery/user.user_taggings_created"=>{"da"=>"Oprettede brugertags", "de"=>"Erstellte Benutzermarkierungen", "en"=>"Created user taggings"}, "activerecord.attributes.family_gallery/user.uploaded_pictures"=>{"da"=>"Uploadede billeder", "de"=>"Hochgeladene Bilder", "en"=>"Uploaded pictures"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"FamilyGallery::User"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::User Completed 302 Found in 129ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::User" for ::1 at 2015-07-24 09:41:51 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::User"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (131.3ms) Completed 200 OK in 145ms (Views: 142.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:41:51 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:41:51 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:41:51 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:41:52 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:41:56 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (129.4ms) Completed 200 OK in 142ms (Views: 142.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:41:57 +0200 Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:41:57 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:41:57 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:41:57 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/Globalize::ActiveRecord::Translation" for ::1 at 2015-07-24 09:42:00 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"Globalize::ActiveRecord::Translation"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (3.6ms) Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:42:00 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:42:00 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:42:00 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:42:00 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/Globalize::ActiveRecord::Translation" for ::1 at 2015-07-24 09:42:12 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"02e6AYIsnaVLKbfEUKyPQL9LO5U00Psa5fRibq1y74qNghdCMnHSgiV5Y0C5WssaqNhmMVks3kiNsZHJGyNEWg==", "t"=>{"activerecord.models.globalize/active_record/translation.one"=>{"da"=>"Oversættelse", "de"=>"Übersetzung", "en"=>"Translation"}, "activerecord.models.globalize/active_record/translation.other"=>{"da"=>"Oversættelser", "de"=>"Übersetzungen", "en"=>"Translations"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"Globalize::ActiveRecord::Translation"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/Globalize::ActiveRecord::Translation Completed 302 Found in 7ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/Globalize::ActiveRecord::Translation" for ::1 at 2015-07-24 09:42:12 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"Globalize::ActiveRecord::Translation"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (86.5ms) Completed 200 OK in 99ms (Views: 97.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:42:13 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:42:13 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:42:13 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:42:13 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:42:15 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (104.8ms) Completed 200 OK in 117ms (Views: 116.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:42:15 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:42:15 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:42:15 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:42:15 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture" for ::1 at 2015-07-24 09:42:17 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Picture"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (16.8ms) Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:42:18 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:42:18 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:42:18 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:42:18 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture" for ::1 at 2015-07-24 09:44:36 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YxuzDAfylu7RzLX1r0Oo07/ZNZuho8zFcFy/CE/qaJU9/h5Pt6/Zyb+cYXFGteyJqEpoP8xf6ZcYGUyv+bvDRQ==", "t"=>{"activerecord.models.family_gallery/picture.one"=>{"da"=>"Billede", "de"=>"Bild", "en"=>"Picture"}, "activerecord.models.family_gallery/picture.other"=>{"da"=>"Billeder", "de"=>"Bilder", "en"=>"Pictures"}, "activerecord.attributes.family_gallery/picture.id"=>{"da"=>"ID", "de"=>"ID", "en"=>"ID"}, "activerecord.attributes.family_gallery/picture.user_owner_id"=>{"da"=>"Ejerbruger ID", "de"=>"", "en"=>"User owner ID"}, "activerecord.attributes.family_gallery/picture.user_uploaded_id"=>{"da"=>"Bruger uploadet ID", "de"=>"", "en"=>"User uploaded ID"}, "activerecord.attributes.family_gallery/picture.taken_at"=>{"da"=>"Taget d.", "de"=>"Vom", "en"=>"Taken at"}, "activerecord.attributes.family_gallery/picture.width"=>{"da"=>"Bredde", "de"=>"Breite", "en"=>"Width"}, "activerecord.attributes.family_gallery/picture.height"=>{"da"=>"Højde", "de"=>"H", "en"=>"Height"}, "activerecord.attributes.family_gallery/picture.latitude"=>{"da"=>"Breddegrad", "de"=>"", "en"=>"Latitude"}, "activerecord.attributes.family_gallery/picture.longitude"=>{"da"=>"Længdegrad", "de"=>"", "en"=>"Longitude"}, "activerecord.attributes.family_gallery/picture.created_at"=>{"da"=>"Oprettet d.", "de"=>"", "en"=>"Created at"}, "activerecord.attributes.family_gallery/picture.updated_at"=>{"da"=>"Opdateret d.", "de"=>"", "en"=>"Updated at"}, "activerecord.attributes.family_gallery/picture.image_file_name"=>{"da"=>"Billede filnavn", "de"=>"", "en"=>"Picture file name"}, "activerecord.attributes.family_gallery/picture.image_content_type"=>{"da"=>"Billede indholdstype", "de"=>"", "en"=>"Picture content type"}, "activerecord.attributes.family_gallery/picture.image_file_size"=>{"da"=>"Billede filstørrelse", "de"=>"", "en"=>"Picture file size"}, "activerecord.attributes.family_gallery/picture.image_updated_at"=>{"da"=>"Billede opdateret d.", "de"=>"", "en"=>"Picture updated at"}, "activerecord.attributes.family_gallery/picture.image"=>{"da"=>"Billede", "de"=>"", "en"=>"Image"}, "activerecord.attributes.family_gallery/picture.translations"=>{"da"=>"Oversættelser", "de"=>"", "en"=>"Translations"}, "activerecord.attributes.family_gallery/picture.group_picture_links"=>{"da"=>"Gruppebilledelinks", "de"=>"", "en"=>"Group picture links"}, "activerecord.attributes.family_gallery/picture.groups"=>{"da"=>"Grupper", "de"=>"", "en"=>"Groups"}, "activerecord.attributes.family_gallery/picture.user_taggings"=>{"da"=>"Brugertaggings", "de"=>"", "en"=>"User taggings"}, "activerecord.attributes.family_gallery/picture.tagged_users"=>{"da"=>"Taggede brugere", "de"=>"", "en"=>"Tagged users"}, "activerecord.attributes.family_gallery/picture.user_owner"=>{"da"=>"Ejerbruger", "de"=>"", "en"=>"User owner"}, "activerecord.attributes.family_gallery/picture.user_uploaded"=>{"da"=>"Bruger uploadet", "de"=>"", "en"=>"User uploaded"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"FamilyGallery::Picture"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture Completed 302 Found in 163ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture" for ::1 at 2015-07-24 09:44:36 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Picture"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (75.2ms) Completed 200 OK in 89ms (Views: 87.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:44:36 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:44:36 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:44:36 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:44:36 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture" for ::1 at 2015-07-24 09:48:24 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ixhH4Io9FenDWXoXXFt7QqTk7IHO3AaVjN1pYaInZcXV/eqjOmBazq0JrpO1rT8Ys3exJaMgI8fkmJrGFHbOFQ==", "t"=>{"activerecord.models.family_gallery/picture.one"=>{"da"=>"Billede", "de"=>"Bild", "en"=>"Picture"}, "activerecord.models.family_gallery/picture.other"=>{"da"=>"Billeder", "de"=>"Bilder", "en"=>"Pictures"}, "activerecord.attributes.family_gallery/picture.id"=>{"da"=>"ID", "de"=>"ID", "en"=>"ID"}, "activerecord.attributes.family_gallery/picture.user_owner_id"=>{"da"=>"Ejerbruger ID", "de"=>"Benutzerinhaber ID", "en"=>"User owner ID"}, "activerecord.attributes.family_gallery/picture.user_uploaded_id"=>{"da"=>"Bruger uploadet ID", "de"=>"ID des hochladenden Benutzers", "en"=>"User uploaded ID"}, "activerecord.attributes.family_gallery/picture.taken_at"=>{"da"=>"Taget d.", "de"=>"Vom", "en"=>"Taken at"}, "activerecord.attributes.family_gallery/picture.width"=>{"da"=>"Bredde", "de"=>"Breite", "en"=>"Width"}, "activerecord.attributes.family_gallery/picture.height"=>{"da"=>"Højde", "de"=>"Höhe", "en"=>"Height"}, "activerecord.attributes.family_gallery/picture.latitude"=>{"da"=>"Breddegrad", "de"=>"Breitengrad", "en"=>"Latitude"}, "activerecord.attributes.family_gallery/picture.longitude"=>{"da"=>"Længdegrad", "de"=>"Längengrad", "en"=>"Longitude"}, "activerecord.attributes.family_gallery/picture.created_at"=>{"da"=>"Oprettet d.", "de"=>"Erstellt am", "en"=>"Created at"}, "activerecord.attributes.family_gallery/picture.updated_at"=>{"da"=>"Opdateret d.", "de"=>"Aktualisiert am", "en"=>"Updated at"}, "activerecord.attributes.family_gallery/picture.image_file_name"=>{"da"=>"Billede filnavn", "de"=>"Bilddateiname", "en"=>"Picture file name"}, "activerecord.attributes.family_gallery/picture.image_content_type"=>{"da"=>"Billede indholdstype", "de"=>"Bildinhalttype", "en"=>"Picture content type"}, "activerecord.attributes.family_gallery/picture.image_file_size"=>{"da"=>"Billede filstørrelse", "de"=>"Bilddateigröße", "en"=>"Picture file size"}, "activerecord.attributes.family_gallery/picture.image_updated_at"=>{"da"=>"Billede opdateret d.", "de"=>"Bild aktualisiert am", "en"=>"Picture updated at"}, "activerecord.attributes.family_gallery/picture.image"=>{"da"=>"Billede", "de"=>"Bild", "en"=>"Image"}, "activerecord.attributes.family_gallery/picture.translations"=>{"da"=>"Oversættelser", "de"=>"Übersetzungen", "en"=>"Translations"}, "activerecord.attributes.family_gallery/picture.group_picture_links"=>{"da"=>"Gruppebilledelinks", "de"=>"Gruppenbild-Links", "en"=>"Group picture links"}, "activerecord.attributes.family_gallery/picture.groups"=>{"da"=>"Grupper", "de"=>"Gruppen", "en"=>"Groups"}, "activerecord.attributes.family_gallery/picture.user_taggings"=>{"da"=>"Brugertaggings", "de"=>"Benutzermarkierungen", "en"=>"User taggings"}, "activerecord.attributes.family_gallery/picture.tagged_users"=>{"da"=>"Taggede brugere", "de"=>"Markierte Benutzer", "en"=>"Tagged users"}, "activerecord.attributes.family_gallery/picture.user_owner"=>{"da"=>"Ejerbruger", "de"=>"Benutzerinhaber", "en"=>"User owner"}, "activerecord.attributes.family_gallery/picture.user_uploaded"=>{"da"=>"Bruger uploadet", "de"=>"Hochgeladener Benutzer", "en"=>"User uploaded"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"FamilyGallery::Picture"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture Completed 302 Found in 142ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture" for ::1 at 2015-07-24 09:48:24 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Picture"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (77.6ms) Completed 200 OK in 93ms (Views: 91.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:48:25 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:48:25 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:48:25 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:48:25 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Picture" for ::1 at 2015-07-24 09:48:27 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Picture"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (18.5ms) Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:48:27 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:48:27 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:48:27 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:48:27 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:48:30 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (120.1ms) Completed 200 OK in 133ms (Views: 133.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:48:30 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:48:30 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:48:30 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:48:30 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserRole" for ::1 at 2015-07-24 09:48:32 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::UserRole"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (8.6ms) Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:48:32 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:48:32 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:48:32 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:48:32 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserRole" for ::1 at 2015-07-24 09:49:15 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jqm03YKom1Tr18gCFvbdxeYwbSg3qoCdwRVRaZEhAMjQTBmeMvXUc4WHHIb/AJmf8aMwjFpWpc+pUKLOJ3CrGA==", "t"=>{"activerecord.models.family_gallery/user_role.one"=>{"da"=>"Brugerrolle", "de"=>"Benutzerrolle", "en"=>"User role"}, "activerecord.models.family_gallery/user_role.other"=>{"da"=>"Brugerroller", "de"=>"Benutzerrollen", "en"=>"User roles"}, "activerecord.attributes.family_gallery/user_role.id"=>{"da"=>"ID", "de"=>"ID", "en"=>"ID"}, "activerecord.attributes.family_gallery/user_role.user_id"=>{"da"=>"Bruger ID", "de"=>"Benutzer ID", "en"=>"User ID"}, "activerecord.attributes.family_gallery/user_role.role"=>{"da"=>"Rolle", "de"=>"Rolle", "en"=>"Role"}, "activerecord.attributes.family_gallery/user_role.created_at"=>{"da"=>"Oprettet d.", "de"=>"Erstellt am", "en"=>"Created at"}, "activerecord.attributes.family_gallery/user_role.updated_at"=>{"da"=>"Opdateret d.", "de"=>"Aktualisiert am", "en"=>"Updated at"}, "activerecord.attributes.family_gallery/user_role.user"=>{"da"=>"Bruger", "de"=>"Benutzer", "en"=>"User"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"FamilyGallery::UserRole"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserRole Completed 302 Found in 30ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserRole" for ::1 at 2015-07-24 09:49:15 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::UserRole"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (63.8ms) Completed 200 OK in 80ms (Views: 77.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:49:15 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:49:15 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:49:15 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:49:15 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:49:19 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (135.6ms) Completed 200 OK in 148ms (Views: 147.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:49:19 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:49:19 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:49:19 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:49:19 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserTagging" for ::1 at 2015-07-24 09:49:21 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::UserTagging"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.9ms) Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:49:21 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:49:21 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:49:21 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:49:21 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserTagging" for ::1 at 2015-07-24 09:50:13 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7zTmZht6dQenApaQWNvUekQFtH8i75NKxfXH3ebKsnOx0Uslqyc6IMlSQhSxLZAgU5bp208TthitsDR6UJsZow==", "t"=>{"activerecord.models.family_gallery/user_tagging.one"=>{"da"=>"Brugertagging", "de"=>"Benutzermarkierung", "en"=>"User tagging"}, "activerecord.models.family_gallery/user_tagging.other"=>{"da"=>"Brugertaggings", "de"=>"Benutzermarkierungen", "en"=>"User taggins"}, "activerecord.attributes.family_gallery/user_tagging.id"=>{"da"=>"ID", "de"=>"ID", "en"=>"ID"}, "activerecord.attributes.family_gallery/user_tagging.picture_id"=>{"da"=>"Billede ID", "de"=>"Bild ID", "en"=>"Picture ID"}, "activerecord.attributes.family_gallery/user_tagging.user_id"=>{"da"=>"Bruger ID", "de"=>"Benutzer ID", "en"=>"User ID"}, "activerecord.attributes.family_gallery/user_tagging.tagged_by_id"=>{"da"=>"Tagget af ID", "de"=>"Markiert von ID", "en"=>"Tagged by ID"}, "activerecord.attributes.family_gallery/user_tagging.position_top"=>{"da"=>"Position top", "de"=>"Position Top", "en"=>"Position top"}, "activerecord.attributes.family_gallery/user_tagging.position_left"=>{"da"=>"Position venstre", "de"=>"Position links", "en"=>"Position left"}, "activerecord.attributes.family_gallery/user_tagging.created_at"=>{"da"=>"Oprettet d.", "de"=>"Erstellt am", "en"=>"Created at"}, "activerecord.attributes.family_gallery/user_tagging.updated_at"=>{"da"=>"Opdateret d.", "de"=>"Aktualisiert am", "en"=>"Updated at"}, "activerecord.attributes.family_gallery/user_tagging.picture"=>{"da"=>"Billede", "de"=>"Bild", "en"=>"Picture"}, "activerecord.attributes.family_gallery/user_tagging.tagged_by"=>{"da"=>"Tagget af", "de"=>"Markiert von", "en"=>"Tagged by"}, "activerecord.attributes.family_gallery/user_tagging.user"=>{"da"=>"Bruger", "de"=>"Benutzer", "en"=>"User"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"FamilyGallery::UserTagging"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserTagging Completed 302 Found in 55ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::UserTagging" for ::1 at 2015-07-24 09:50:13 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::UserTagging"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (69.8ms) Completed 200 OK in 84ms (Views: 82.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:50:13 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:50:13 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:50:13 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:50:13 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:50:28 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (131.9ms) Completed 200 OK in 144ms (Views: 144.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:50:28 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:50:28 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:50:28 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:50:28 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::User" for ::1 at 2015-07-24 09:50:29 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::User"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (28.6ms) Completed 200 OK in 42ms (Views: 41.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:50:30 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:50:30 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:50:30 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:50:30 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:50:44 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (126.3ms) Completed 200 OK in 140ms (Views: 139.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:50:45 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:50:45 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:50:45 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:50:45 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:51:05 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (129.0ms) Completed 200 OK in 142ms (Views: 142.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:51:05 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:51:05 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:51:05 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:51:05 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Group" for ::1 at 2015-07-24 09:51:08 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Group"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.4ms) Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:51:08 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:51:08 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:51:08 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:51:08 +0200 Started PUT "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Group" for ::1 at 2015-07-24 09:51:43 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ahi9AxR98mK6ZHeqKpTqIJCfDoCYzCOuM31RqDzQbaZc/RBApCC9RdQ0oy7DYq56hwxTJPUwBvxbOKIPioHGdg==", "t"=>{"activerecord.models.family_gallery/group.one"=>{"da"=>"Gruppe", "de"=>"Gruppe", "en"=>"Group"}, "activerecord.models.family_gallery/group.other"=>{"da"=>"Grupper", "de"=>"Gruppen", "en"=>"Groups"}, "activerecord.attributes.family_gallery/group.id"=>{"da"=>"ID", "de"=>"ID", "en"=>"ID"}, "activerecord.attributes.family_gallery/group.user_owner_id"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/group.created_at"=>{"da"=>"Oprettet d.", "de"=>"Erstellt am", "en"=>"Created at"}, "activerecord.attributes.family_gallery/group.updated_at"=>{"da"=>"Opdateret d.", "de"=>"Aktualisiert am", "en"=>"Updated at"}, "activerecord.attributes.family_gallery/group.translations"=>{"da"=>"Oversættelser", "de"=>"Übersetzungen", "en"=>"Translations"}, "activerecord.attributes.family_gallery/group.user_owner"=>{"da"=>"", "de"=>"", "en"=>""}, "activerecord.attributes.family_gallery/group.group_picture_links"=>{"da"=>"Gruppebilledelinks", "de"=>"Gruppenbild-Links", "en"=>"Group picture links"}, "activerecord.attributes.family_gallery/group.pictures"=>{"da"=>"Billeder", "de"=>"Bilder", "en"=>"Pictures"}}, "commit"=>"Save", "handler_id"=>"model_handler", "id"=>"FamilyGallery::Group"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Group Completed 302 Found in 44ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Group" for ::1 at 2015-07-24 09:51:43 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Group"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (62.9ms) Completed 200 OK in 77ms (Views: 75.7ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:51:43 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:51:43 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:51:43 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:51:43 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:51:52 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (122.6ms) Completed 200 OK in 135ms (Views: 134.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:51:52 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:51:52 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:51:52 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:51:52 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Group" for ::1 at 2015-07-24 09:51:55 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Group"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (10.0ms) Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:51:55 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:51:55 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:51:55 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:51:55 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:52:00 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (127.5ms) Completed 200 OK in 151ms (Views: 150.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:52:00 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:52:00 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:52:00 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:52:00 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-07-24 09:52:14 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (53.8ms) Completed 200 OK in 161ms (Views: 77.7ms | ActiveRecord: 27.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:52:14 +0200 Started POST "/family_gallery/locales" for ::1 at 2015-07-24 09:52:18 +0200 Processing by FamilyGallery::LocalesController#create as */* Parameters: {"locale"=>"de"} Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/family_gallery/groups/1" for ::1 at 2015-07-24 09:52:18 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.6ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.5ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.7ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.8ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.8ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (20.2ms) Completed 200 OK in 93ms (Views: 74.2ms | ActiveRecord: 3.8ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-07-24 09:52:19 +0200 Started GET "/family_gallery/awesome_translations" for ::1 at 2015-07-24 09:52:42 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.5ms) Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:52:42 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:52:42 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:52:42 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:52:42 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler" for ::1 at 2015-07-24 09:52:43 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"model_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (124.8ms) Completed 200 OK in 145ms (Views: 144.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:52:43 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:52:43 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:52:43 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:52:43 +0200 Started GET "/family_gallery/awesome_translations/handlers/model_handler/groups/FamilyGallery::Group" for ::1 at 2015-07-24 09:52:44 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"model_handler", "id"=>"FamilyGallery::Group"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (9.0ms) Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-07-24 09:52:44 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-07-24 09:52:44 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-07-24 09:52:44 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-07-24 09:52:44 +0200 Started GET "/" for ::1 at 2015-08-05 21:47:53 +0200 Started GET "/family_gallery" for ::1 at 2015-08-05 21:47:54 +0200 Processing by FamilyGallery::WelcomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12)  (18.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=0) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (237.7ms) Completed 200 OK in 680ms (Views: 514.5ms | ActiveRecord: 130.3ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:47:54 +0200 Started GET "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-08-05 21:47:57 +0200 Processing by FamilyGallery::SessionsController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/devise/shared/_links.html.haml (0.6ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/sessions/new.html.erb within layouts/family_gallery/application (20.9ms) Completed 200 OK in 106ms (Views: 47.9ms | ActiveRecord: 41.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:47:57 +0200 Started POST "/family_gallery/family_gallery/users/sign_in" for ::1 at 2015-08-05 21:47:59 +0200 Processing by FamilyGallery::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7gR0Wi1ZbYJim3IDJdpN6IFxoj5s/ryOjZNf1DltQn7VOV+bC69WCZS1t43akBtyP2OrrVwRtUHCnoBcsDgTWg==", "family_gallery_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} FamilyGallery::User Load (7.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = 'admin@example.com' ORDER BY `family_gallery_users`.`id` ASC LIMIT 1  (0.2ms) BEGIN SQL (0.3ms) UPDATE `family_gallery_users` SET `current_sign_in_at` = '2015-08-05 19:47:59', `sign_in_count` = 2, `updated_at` = '2015-08-05 19:47:59' WHERE `family_gallery_users`.`id` = 1  (12.4ms) COMMIT Redirected to http://localhost:3000/family_gallery/ Completed 302 Found in 108ms (ActiveRecord: 20.1ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 21:47:59 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (20.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (18.5ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (20.2ms) Completed 200 OK in 133ms (Views: 30.6ms | ActiveRecord: 72.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:48:00 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 21:48:02 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.html.haml within layouts/family_gallery/application (7.9ms) Completed 200 OK in 41ms (Views: 34.6ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:48:02 +0200 Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 21:48:03 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.7ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.6ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.html.haml within layouts/family_gallery/application (50.8ms) Completed 200 OK in 85ms (Views: 44.1ms | ActiveRecord: 34.2ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:48:04 +0200 Started GET "/family_gallery/users/1/edit" for ::1 at 2015-08-05 21:48:05 +0200 Processing by FamilyGallery::UsersController#edit as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.html.haml (50.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/edit.html.haml within layouts/family_gallery/application (52.9ms) Completed 200 OK in 94ms (Views: 87.1ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:48:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:48:06 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:48:06 +0200 Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 21:48:51 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.html.haml within layouts/family_gallery/application (7.6ms) Completed 200 OK in 43ms (Views: 35.2ms | ActiveRecord: 1.3ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:48:51 +0200 Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 21:49:06 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.html.haml within layouts/family_gallery/application (9.5ms) Completed 200 OK in 44ms (Views: 36.1ms | ActiveRecord: 1.4ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:49:06 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 21:49:08 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.html.haml within layouts/family_gallery/application (3.9ms) Completed 200 OK in 39ms (Views: 31.0ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:49:08 +0200 Started GET "/family_gallery/users/new" for ::1 at 2015-08-05 21:49:09 +0200 Processing by FamilyGallery::UsersController#new as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.html.haml (9.6ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/new.html.haml within layouts/family_gallery/application (11.9ms) Completed 200 OK in 52ms (Views: 45.5ms | ActiveRecord: 0.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:49:09 +0200 Started POST "/family_gallery/users" for ::1 at 2015-08-05 21:49:14 +0200 Processing by FamilyGallery::UsersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zd8947Xe54dIZG6YVkKblFS3qq9oVNcj4uCXv6+x++O5gfK0nqIXplPvZm1W2NNqSL1y2MgVDzdEg7HnkEI9yg==", "user"=>{"first_name"=>"Test", "last_name"=>"User", "email"=>"test@example.com", "password"=>"[FILTERED]"}, "commit"=>"Save"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN FamilyGallery::User Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = BINARY 'test@example.com' LIMIT 1 SQL (21.7ms) INSERT INTO `family_gallery_users` (`first_name`, `last_name`, `email`, `encrypted_password`, `created_at`, `updated_at`) VALUES ('Test', 'User', 'test@example.com', '$2a$10$i/.H2PJPD3sJ2NseHS5NqOqB6j71W/NCapOjwZ0driPsF5wWd1Giq', '2015-08-05 19:49:14', '2015-08-05 19:49:14')  (0.4ms) COMMIT Redirected to http://localhost:3000/family_gallery/users/2 Completed 302 Found in 97ms (ActiveRecord: 23.2ms) Started GET "/family_gallery/users/2" for ::1 at 2015-08-05 21:49:15 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"2"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 2 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 2 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 2 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 2 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.html.haml within layouts/family_gallery/application (13.2ms) Completed 200 OK in 51ms (Views: 45.1ms | ActiveRecord: 1.5ms) Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:49:15 +0200 Started DELETE "/family_gallery/users/2" for ::1 at 2015-08-05 21:49:17 +0200 Processing by FamilyGallery::UsersController#destroy as HTML Parameters: {"authenticity_token"=>"oOnoevxMIn0IAqYNha65pKmN1Z+bYN7B3+KbBt0aiM7Utyct1zDSXBOJrviFNPFatYcN6DshBtV5gb1e4ulO5w==", "id"=>"2"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 2 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN FamilyGallery::Group Exists (6.8ms) SELECT 1 AS one FROM `family_gallery_groups` WHERE `family_gallery_groups`.`user_owner_id` = 2 LIMIT 1 FamilyGallery::Picture Exists (0.6ms) SELECT 1 AS one FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_owner_id` = 2 LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 2 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` WHERE `family_gallery_user_taggings`.`user_id` = 2 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 2 LIMIT 1 SQL (0.9ms) DELETE FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 2  (0.2ms) COMMIT Redirected to http://localhost:3000/family_gallery/users Completed 302 Found in 25ms (ActiveRecord: 9.9ms) Started GET "/family_gallery/users" for ::1 at 2015-08-05 21:49:17 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.html.haml within layouts/family_gallery/application (3.7ms) Completed 200 OK in 40ms (Views: 32.0ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:49:17 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:50:02 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (48.0ms) Completed 200 OK in 133ms (Views: 75.7ms | ActiveRecord: 14.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:02 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 21:50:03 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.8ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.html.haml within layouts/family_gallery/application (46.3ms) Completed 200 OK in 172ms (Views: 130.1ms | ActiveRecord: 31.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:03 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:03 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:03 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:03 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:03 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:04 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:04 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:04 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:04 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:04 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:04 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:50:05 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.7ms) Completed 200 OK in 30ms (Views: 26.4ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:05 +0200 Started GET "/family_gallery/awesome_translations" for ::1 at 2015-08-05 21:50:05 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.2ms) Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 21:50:06 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 21:50:06 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:06 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:06 +0200 Started GET "/family_gallery/awesome_translations" for ::1 at 2015-08-05 21:50:08 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (0.7ms) Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 21:50:08 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:08 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 21:50:08 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:08 +0200 Started GET "/family_gallery/awesome_translations/handlers/global_handler" for ::1 at 2015-08-05 21:50:10 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"global_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (1067.1ms) Completed 200 OK in 1088ms (Views: 1080.0ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 21:50:11 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 21:50:11 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:11 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:11 +0200 Started GET "/family_gallery/awesome_translations/handlers/global_handler/groups/global" for ::1 at 2015-08-05 21:50:12 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"global_handler", "id"=>"global"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (381.9ms) Completed 200 OK in 395ms (Views: 394.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 21:50:13 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:13 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:13 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 21:50:13 +0200 Started PUT "/family_gallery/awesome_translations/handlers/global_handler/groups/global" for ::1 at 2015-08-05 21:50:18 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8rBJ9WMpvgUUb9d325OvTIwa53paOKden1YxxxTfTHCG7oaiSFVOJA/k34LbCeeykBA/Dfp5f0o5NRefKyyKWQ==", "t"=>{"add_new"=>{"da"=>"Tilføj ny", "de"=>"Neu hinzufügen", "en"=>"Add new"}, "no_results"=>{"da"=>"Ingen resultater", "de"=>"Keine Ergebnisse", "en"=>"No results"}, "save"=>{"da"=>"Gem", "de"=>"Speichern", "en"=>"Save"}, "delete"=>{"da"=>"Slet", "de"=>"Löschen", "en"=>"Delete"}, "are_you_sure"=>{"da"=>"Er du sikker?", "de"=>"Sind Sie sicher?", "en"=>"Are you sure?"}, "actions"=>{"da"=>"Muligheder", "de"=>"Möglichkeiten", "en"=>"Actions"}, "remove"=>{"da"=>"Fjern", "de"=>"Entfernen", "en"=>"Remove"}, "edit"=>{"da"=>"Rediger", "de"=>"", "en"=>"Edit"}}, "commit"=>"Save", "handler_id"=>"global_handler", "id"=>"global"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/global_handler/groups/global Completed 302 Found in 400ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/global_handler/groups/global" for ::1 at 2015-08-05 21:50:19 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"global_handler", "id"=>"global"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.17/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (421.1ms) Completed 200 OK in 434ms (Views: 433.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 21:50:19 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:19 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 21:50:19 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:19 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:50:24 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (8.1ms) Completed 200 OK in 84ms (Views: 32.0ms | ActiveRecord: 13.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:24 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 21:50:25 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.html.haml within layouts/family_gallery/application (19.5ms) Completed 200 OK in 59ms (Views: 38.8ms | ActiveRecord: 9.8ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:25 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:50:26 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.7ms) Completed 200 OK in 31ms (Views: 26.5ms | ActiveRecord: 1.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:26 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 21:50:26 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.html.haml within layouts/family_gallery/application (3.0ms) Completed 200 OK in 38ms (Views: 28.7ms | ActiveRecord: 1.0ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:27 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 21:50:28 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (1.1ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (23.1ms) Completed 200 OK in 59ms (Views: 39.9ms | ActiveRecord: 11.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:29 +0200 Started GET "/family_gallery/groups/1/multiple_pictures/new" for ::1 at 2015-08-05 21:50:30 +0200 Processing by FamilyGallery::MultiplePicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/multiple_pictures/new.html.haml within layouts/family_gallery/application (13.3ms) Completed 200 OK in 76ms (Views: 57.3ms | ActiveRecord: 1.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:50:30 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 21:51:37 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (92.8ms) Completed 200 OK in 616ms (Views: 502.1ms | ActiveRecord: 22.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:51:37 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 21:51:42 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (5.8ms) Completed 200 OK in 41ms (Views: 33.3ms | ActiveRecord: 1.4ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:51:42 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:53:15 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (57.6ms) Completed 200 OK in 583ms (Views: 472.6ms | ActiveRecord: 14.3ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:53:16 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:53:38 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.6ms) Completed 200 OK in 33ms (Views: 29.3ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:53:38 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:53:46 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.4ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (53.2ms) Completed 200 OK in 480ms (Views: 376.3ms | ActiveRecord: 13.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:53:46 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:55:16 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.8ms) Completed 200 OK in 35ms (Views: 31.0ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:55:16 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:55:23 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (70.8ms) Completed 200 OK in 430ms (Views: 335.3ms | ActiveRecord: 13.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:55:23 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:55:29 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.6ms) Completed 200 OK in 33ms (Views: 29.3ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:55:29 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:55:30 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.5ms) Completed 200 OK in 32ms (Views: 28.4ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 21:55:30 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 21:56:11 +0200 ActionController::RoutingError (uninitialized constant FamilyGallery::BaseController::LightMobile): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/base_controller.rb:5:in `' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/base_controller.rb:1:in `' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/welcome_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (64.9ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 21:56:28 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 114ms (ActiveRecord: 4.0ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007f892d1508c0>): light_mobile (0.0.10) lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.2ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 21:56:53 +0200 ActionController::RoutingError (uninitialized constant FamilyGallery::BaseController::AgentHelpers): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/base_controller.rb:6:in `' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/base_controller.rb:1:in `' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/welcome_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.5ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 21:59:47 +0200 ActionController::RoutingError (uninitialized constant LightMobile::DynamicRenderer::AgentHelpers): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:2:in `' /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:1:in `' /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile.rb:9:in `const_missing' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/base_controller.rb:5:in `' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/base_controller.rb:1:in `' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/welcome_controller.rb:1:in `' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.3ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 22:00:08 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.5ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (80.2ms) Completed 200 OK in 672ms (Views: 582.2ms | ActiveRecord: 14.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:00:09 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 22:00:11 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (1.7ms) Completed 200 OK in 36ms (Views: 32.1ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:00:12 +0200 Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:00:57 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (2.0ms) Completed 200 OK in 41ms (Views: 37.0ms | ActiveRecord: 1.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:00:58 +0200 Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:01:12 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (2.3ms) Completed 200 OK in 39ms (Views: 35.7ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:01:12 +0200 Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:01:25 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 130ms (ActiveRecord: 5.2ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007f87ae936448>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:6:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.5ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:02:00 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 136ms (ActiveRecord: 11.6ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fd4b6184268>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:6:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.8ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:02:01 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.5ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fd4b3c39be8>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:6:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.0ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:02:01 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.5ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fd4b83dd5a8>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:6:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.1ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:02:19 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 132ms (ActiveRecord: 12.0ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fdf3e23f3c8>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:8:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.1ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:02:32 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 131ms (ActiveRecord: 12.0ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007f9fbc285150>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:9:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.6ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:03:32 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 74ms (ActiveRecord: 11.0ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007f9fbe13ba68>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:9:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.8ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:03:40 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 136ms (ActiveRecord: 11.4ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fe63b4aa5f0>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.9ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:03:41 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.5ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fe63c1d20e8>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.9ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:04:45 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 137ms (ActiveRecord: 11.0ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fca84796fc0>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.4ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:13:04 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 139ms (ActiveRecord: 22.6ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fefec25fe70>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.0ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:13:06 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.6ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fefec597188>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.7ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:13:08 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.5ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fefecc11a40>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.0ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:13:43 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Completed 500 Internal Server Error in 122ms (ActiveRecord: 11.8ms) NoMethodError (undefined method `agent_mobile?' for #<#:0x007fc24384bd88>): /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:4:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.1ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:14:34 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (58.3ms) Completed 500 Internal Server Error in 126ms (ActiveRecord: 13.4ms) ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::Organization): 1: - content_for :menu_items do 2: - if signed_in? 3: .menu_item= link_to t(".frontpage"), root_path 4: - if can? :index, Organization 5: .menu_item= link_to Organization.model_name.human(count: 2), organizations_path 6: .menu_item= link_to t(".sign_out"), destroy_user_session_path, method: :delete 7: /Users/kaspernj/Dev/Rails/family_gallery/app/views/layouts/family_gallery/application.mobile.haml:4:in `block in ___sers_kaspernj__ev__ails_family_gallery_app_views_layouts_family_gallery_application_mobile_haml___1383363319041230247_70236154392840' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.1) lib/action_view/helpers/capture_helper.rb:152:in `content_for' /Users/kaspernj/Dev/Rails/family_gallery/app/views/layouts/family_gallery/application.mobile.haml:1:in `___sers_kaspernj__ev__ails_family_gallery_app_views_layouts_family_gallery_application_mobile_haml___1383363319041230247_70236154392840' actionview (4.2.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.1) lib/action_view/template.rb:143:in `render' actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /Users/kaspernj/Dev/Rails/light_mobile/lib/light_mobile/dynamic_renderer.rb:26:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.8ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:15:25 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (1.6ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (801.1ms) Completed 200 OK in 912ms (Views: 908.1ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:15:26 +0200 Started GET "/stylesheets/application_mobile.css" for ::1 at 2015-08-05 22:15:26 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.7ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/javascripts/application_mobile.js" for ::1 at 2015-08-05 22:15:27 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (40.8ms) Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:15:27 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 22:15:32 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.4ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.html.haml within layouts/family_gallery/application (46.8ms) Completed 200 OK in 233ms (Views: 201.2ms | ActiveRecord: 20.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:15:32 +0200 Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:15:57 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (1.8ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.6ms) Completed 200 OK in 63ms (Views: 58.5ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/stylesheets/application_mobile.css" for ::1 at 2015-08-05 22:15:57 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (45.0ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:15:57 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:15:58 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:15:58 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:15:58 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:15:58 +0200 Started GET "/javascripts/application_mobile.js" for ::1 at 2015-08-05 22:15:58 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.3ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:17:12 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (9.9ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (35.5ms) Completed 200 OK in 116ms (Views: 59.8ms | ActiveRecord: 12.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/stylesheets/light_mobile/application_mobile.css" for ::1 at 2015-08-05 22:17:13 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/light_mobile/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.2ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:17:13 +0200 Started GET "/javascripts/light_mobile/application_mobile.js" for ::1 at 2015-08-05 22:17:13 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/light_mobile/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (40.1ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:17:31 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (78.3ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (226.8ms) Completed 200 OK in 513ms (Views: 425.3ms | ActiveRecord: 6.8ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/stylesheets/light_mobile/application_mobile.css" for ::1 at 2015-08-05 22:17:32 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/light_mobile/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.3ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:17:32 +0200 Started GET "/javascripts/light_mobile/application_mobile.js" for ::1 at 2015-08-05 22:17:32 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/light_mobile/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (37.9ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:18:19 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (80.7ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (220.9ms) Completed 200 OK in 514ms (Views: 414.4ms | ActiveRecord: 14.3ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:18:19 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/stylesheets/light_mobile/application_mobile.css" for ::1 at 2015-08-05 22:18:20 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/light_mobile/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.9ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:18:20 +0200 Started GET "/javascripts/light_mobile/application_mobile.js" for ::1 at 2015-08-05 22:18:20 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/light_mobile/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.1ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:21:35 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (85.2ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (221.6ms) Completed 200 OK in 530ms (Views: 425.7ms | ActiveRecord: 14.2ms) Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/stylesheets/light_mobile/application_mobile.css" for ::1 at 2015-08-05 22:21:35 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/light_mobile/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.6ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/javascripts/light_mobile/application_mobile.js" for ::1 at 2015-08-05 22:21:35 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/light_mobile/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (42.6ms) Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:21:35 +0200 Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:23:01 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (79.4ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (216.9ms) Completed 200 OK in 522ms (Views: 415.3ms | ActiveRecord: 13.8ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/stylesheets/light_mobile/application_mobile.css" for ::1 at 2015-08-05 22:23:02 +0200 ActionController::RoutingError (No route matches [GET] "/stylesheets/light_mobile/application_mobile.css"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (43.7ms) Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:23:02 +0200 Started GET "/javascripts/light_mobile/application_mobile.js" for ::1 at 2015-08-05 22:23:02 +0200 ActionController::RoutingError (No route matches [GET] "/javascripts/light_mobile/application_mobile.js"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (38.2ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:23:38 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (1.8ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.7ms) Completed 200 OK in 149ms (Views: 144.4ms | ActiveRecord: 0.9ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:23:39 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (1.9ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (36.3ms) Completed 200 OK in 67ms (Views: 62.9ms | ActiveRecord: 0.8ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:23:40 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (1.6ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.6ms) Completed 200 OK in 63ms (Views: 59.4ms | ActiveRecord: 0.8ms) Started GET "/family_gallery/?mobile=1" for ::1 at 2015-08-05 22:23:42 +0200 Processing by FamilyGallery::WelcomeController#index as HTML Parameters: {"mobile"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (1.9ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (36.8ms) Completed 200 OK in 71ms (Views: 66.7ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:23:42 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 22:24:01 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.4ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.html.haml within layouts/family_gallery/application (24.5ms) Completed 200 OK in 87ms (Views: 66.9ms | ActiveRecord: 9.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:24:01 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:24:01 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:24:01 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:24:02 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 22:25:26 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.mobile.haml within layouts/family_gallery/application (5.1ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (44.2ms) Completed 200 OK in 85ms (Views: 74.6ms | ActiveRecord: 1.1ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:25:26 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:25:26 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:25:26 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:25:26 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:25:26 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:25:27 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 22:26:08 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.mobile.haml within layouts/family_gallery/application (4.6ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.2ms) Completed 200 OK in 69ms (Views: 60.1ms | ActiveRecord: 1.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:26:08 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:26:10 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.5ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.html.haml within layouts/family_gallery/application (52.5ms) Completed 200 OK in 102ms (Views: 66.9ms | ActiveRecord: 27.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:26:10 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:27:03 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (10.0ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.8ms) Completed 200 OK in 74ms (Views: 66.2ms | ActiveRecord: 1.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:27:03 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:27:10 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (8.7ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (35.0ms) Completed 200 OK in 74ms (Views: 66.1ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:27:10 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:27:23 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (9.4ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.5ms) Completed 200 OK in 73ms (Views: 65.6ms | ActiveRecord: 1.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:27:24 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:27:29 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (9.2ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (36.6ms) Completed 200 OK in 79ms (Views: 70.3ms | ActiveRecord: 1.6ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:27:29 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:28:10 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (6.6ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.0ms) Completed 200 OK in 69ms (Views: 61.4ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 22:28:11 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:28:15 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (8.8ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (29.3ms) Completed 200 OK in 69ms (Views: 61.3ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:28:15 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:28:22 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (9.0ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (43.8ms) Completed 200 OK in 84ms (Views: 76.2ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:28:22 +0200 Started GET "/family_gallery/groups/1/multiple_pictures/new" for ::1 at 2015-08-05 22:28:25 +0200 Processing by FamilyGallery::MultiplePicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/multiple_pictures/new.html.haml within layouts/family_gallery/application (48.7ms) Completed 200 OK in 120ms (Views: 98.0ms | ActiveRecord: 1.3ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:28:25 +0200 Started GET "/family_gallery/groups/1/multiple_pictures/new" for ::1 at 2015-08-05 22:28:42 +0200 Processing by FamilyGallery::MultiplePicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/multiple_pictures/new.mobile.haml within layouts/family_gallery/application (3.9ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.8ms) Completed 200 OK in 64ms (Views: 58.1ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:28:42 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:29:02 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (49.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.html.haml within layouts/family_gallery/application (53.1ms) Completed 200 OK in 114ms (Views: 74.3ms | ActiveRecord: 29.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:29:02 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:29:23 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.1ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (8.5ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.html.haml within layouts/family_gallery/application (10.4ms) Completed 200 OK in 58ms (Views: 48.8ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:29:24 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:29:39 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (8.5ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.html.haml within layouts/family_gallery/application (17.4ms) Completed 200 OK in 69ms (Views: 58.6ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:29:39 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:29:41 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (6.5ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.7ms) Completed 200 OK in 73ms (Views: 64.6ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:29:41 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:29:42 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:29:42 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:29:42 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:29:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:29:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:29:42 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:29:43 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (11.3ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.html.haml within layouts/family_gallery/application (13.2ms) Completed 200 OK in 63ms (Views: 51.8ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:29:43 +0200 Started GET "/family_gallery/groups/new" for ::1 at 2015-08-05 22:29:52 +0200 Processing by FamilyGallery::GroupsController#new as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/_form.mobile.haml (8.2ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/new.mobile.haml within layouts/family_gallery/application (11.8ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (42.3ms) Completed 200 OK in 86ms (Views: 78.8ms | ActiveRecord: 0.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:29:52 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 22:30:15 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (6.3ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.8ms) Completed 200 OK in 69ms (Views: 61.3ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:30:15 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:30:18 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (9.8ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.html.haml within layouts/family_gallery/application (11.7ms) Completed 200 OK in 62ms (Views: 52.3ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:30:18 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:30:48 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.mobile.haml (12.4ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.mobile.haml within layouts/family_gallery/application (17.7ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.5ms) Completed 200 OK in 89ms (Views: 78.1ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:30:49 +0200 Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:30:59 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4Bxtu4Qwtot0bXtvwetrYpjXto1duvDaFf5grWLvtIiUQqLsr0xGqm/mc5rBcSOchN1u+v37KM6znUb1XRxyoQ==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>[#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image][]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">]}, "commit"=>"Create Picture"} Unpermitted parameter: image FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Unpermitted parameter: image CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN FamilyGallery::GroupPictureLink Exists (5.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (4.4ms) INSERT INTO `family_gallery_pictures` (`user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES (1, 1, '2015-08-05 20:30:59', '2015-08-05 20:30:59') SQL (1.0ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 1, '2015-08-05 20:30:59', '2015-08-05 20:30:59') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 1 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 1, '2015-08-05 20:30:59', '2015-08-05 20:30:59') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 1 AND `family_gallery_group_picture_links`.`id` != 1 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1  (0.3ms) ROLLBACK Completed 500 Internal Server Error in 36ms (ActiveRecord: 12.4ms) RuntimeError (No image was given): /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:57:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (21.2ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:31:07 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4Bxtu4Qwtot0bXtvwetrYpjXto1duvDaFf5grWLvtIiUQqLsr0xGqm/mc5rBcSOchN1u+v37KM6znUb1XRxyoQ==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>[#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image][]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">]}, "commit"=>"Create Picture"} Unpermitted parameter: image FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.1ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Unpermitted parameter: image CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_pictures` (`user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES (1, 1, '2015-08-05 20:31:07', '2015-08-05 20:31:07') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 2, '2015-08-05 20:31:07', '2015-08-05 20:31:07') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 2 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.1ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 2, '2015-08-05 20:31:07', '2015-08-05 20:31:07') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 2 AND `family_gallery_group_picture_links`.`id` != 2 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1  (3.7ms) ROLLBACK Completed 500 Internal Server Error in 22ms (ActiveRecord: 5.7ms) RuntimeError (No image was given): /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:57:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.9ms) Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:31:19 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.mobile.haml (9.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.mobile.haml within layouts/family_gallery/application (12.2ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.3ms) Completed 200 OK in 74ms (Views: 64.8ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:31:19 +0200 Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:31:26 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2s6qKBqcPlKQvECrCgTY5mJZP2HBFQrXQC+03KcNxh+ukGV/MeDOc4s3SF4KnpAYflPnFmFU0sPmTJKEmP4ANg==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>[#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image][]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">]}, "commit"=>"Create Picture"} Unpermitted parameter: image FamilyGallery::User Load (0.5ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Unpermitted parameter: image CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_pictures` (`user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES (1, 1, '2015-08-05 20:31:26', '2015-08-05 20:31:26') SQL (0.1ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 3, '2015-08-05 20:31:26', '2015-08-05 20:31:26') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 3 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.1ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 3, '2015-08-05 20:31:26', '2015-08-05 20:31:26') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 3 AND `family_gallery_group_picture_links`.`id` != 3 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1  (5.1ms) ROLLBACK Completed 500 Internal Server Error in 24ms (ActiveRecord: 7.1ms) RuntimeError (No image was given): /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:57:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.4ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:32:09 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2s6qKBqcPlKQvECrCgTY5mJZP2HBFQrXQC+03KcNxh+ukGV/MeDOc4s3SF4KnpAYflPnFmFU0sPmTJKEmP4ANg==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>[#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image][]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">]}, "commit"=>"Create Picture"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) Unpermitted parameter: image FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Unpermitted parameter: image CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1  (0.1ms) ROLLBACK Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.mobile.haml (7.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.mobile.haml within layouts/family_gallery/application (11.0ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.7ms) Completed 200 OK in 172ms (Views: 67.5ms | ActiveRecord: 18.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:32:09 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:32:10 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:32:29 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.mobile.haml (9.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.mobile.haml within layouts/family_gallery/application (12.6ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (35.0ms) Completed 200 OK in 83ms (Views: 72.3ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:32:30 +0200 Started GET "/family_gallery/pictures/new?group_id=1" for ::1 at 2015-08-05 22:32:31 +0200 Processing by FamilyGallery::PicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.1ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.mobile.haml (7.5ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/new.mobile.haml within layouts/family_gallery/application (9.8ms) Rendered /Users/kaspernj/Dev/Rails/light_mobile/app/views/layouts/_light_mobile_basic_layout.mobile.haml (29.4ms) Completed 200 OK in 69ms (Views: 59.6ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 22:32:32 +0200 Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:32:39 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ecRlKRMZGC6rNkBXLWSVmmzxlzvEq7e/Z175fiKBeGJud7DjzCUQaEn0fRcL9qodbkeK09Tdspb/l29x3nDyA==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Picture"} Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-ff4b6d.jpg' FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-wfoyzj.jpg' CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-fbcu0x.jpg' SQL (0.5ms) INSERT INTO `family_gallery_pictures` (`image_file_name`, `image_content_type`, `image_file_size`, `image_updated_at`, `user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES ('10915075_10204275863511434_4444474650773064253_o.jpg', 'image/jpeg', 126116, '2015-08-05 20:32:39', 1, 1, '2015-08-05 20:32:39', '2015-08-05 20:32:39') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 4, '2015-08-05 20:32:39', '2015-08-05 20:32:39') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 4 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 4, '2015-08-05 20:32:39', '2015-08-05 20:32:39') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 4 AND `family_gallery_group_picture_links`.`id` != 4 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-32jja8.jpg' SQL (0.4ms) UPDATE `family_gallery_pictures` SET `image_file_name` = '10915075_10204275863511434_4444474650773064253_o.jpg', `image_content_type` = 'image/jpeg', `image_file_size` = 126116, `image_updated_at` = '2015-08-05 20:32:39', `user_uploaded_id` = 1, `user_owner_id` = 1, `created_at` = '2015-08-05 20:32:39', `updated_at` = '2015-08-05 20:32:39', `id` = 4, `width` = 1600, `height` = 1067 WHERE `family_gallery_pictures`.`id` = 4 [paperclip] deleting /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public  (6.0ms) ROLLBACK Completed 500 Internal Server Error in 94ms (ActiveRecord: 8.9ms) Errno::EPERM (Operation not permitted @ unlink_internal - /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public): /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `unlink' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `block in remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1459:in `platform_support' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1453:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:791:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:569:in `block in rm' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `each' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `rm' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:64:in `block in flush_deletes' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `each' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `flush_deletes' paperclip (4.3.0) lib/paperclip/attachment.rb:239:in `save' paperclip (4.3.0) lib/paperclip/has_attached_file.rb:92:in `block in add_active_record_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `instance_exec' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:142:in `save!' activerecord (4.2.1) lib/active_record/validations.rb:43:in `save!' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:29:in `save!' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `block in save!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `save!' activerecord (4.2.1) lib/active_record/persistence.rb:264:in `block in update!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/persistence.rb:262:in `update!' /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:80:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.1ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:33:18 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ecRlKRMZGC6rNkBXLWSVmmzxlzvEq7e/Z175fiKBeGJud7DjzCUQaEn0fRcL9qodbkeK09Tdspb/l29x3nDyA==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Picture"} Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-dr4q0j.jpg' FamilyGallery::User Load (0.5ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-11sa374.jpg' CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-u0qln9.jpg' SQL (0.3ms) INSERT INTO `family_gallery_pictures` (`image_file_name`, `image_content_type`, `image_file_size`, `image_updated_at`, `user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES ('10915075_10204275863511434_4444474650773064253_o.jpg', 'image/jpeg', 126116, '2015-08-05 20:33:18', 1, 1, '2015-08-05 20:33:18', '2015-08-05 20:33:18') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 5, '2015-08-05 20:33:18', '2015-08-05 20:33:18') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 5 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 5, '2015-08-05 20:33:18', '2015-08-05 20:33:18') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 5 AND `family_gallery_group_picture_links`.`id` != 5 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11013-1h98oce.jpg' SQL (0.3ms) UPDATE `family_gallery_pictures` SET `image_file_name` = '10915075_10204275863511434_4444474650773064253_o.jpg', `image_content_type` = 'image/jpeg', `image_file_size` = 126116, `image_updated_at` = '2015-08-05 20:33:18', `user_uploaded_id` = 1, `user_owner_id` = 1, `created_at` = '2015-08-05 20:33:18', `updated_at` = '2015-08-05 20:33:18', `id` = 5, `width` = 1600, `height` = 1067 WHERE `family_gallery_pictures`.`id` = 5 [paperclip] deleting /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public  (0.4ms) ROLLBACK Completed 500 Internal Server Error in 64ms (ActiveRecord: 3.4ms) Errno::EPERM (Operation not permitted @ unlink_internal - /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public): /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `unlink' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `block in remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1459:in `platform_support' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1453:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:791:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:569:in `block in rm' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `each' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `rm' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:64:in `block in flush_deletes' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `each' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `flush_deletes' paperclip (4.3.0) lib/paperclip/attachment.rb:239:in `save' paperclip (4.3.0) lib/paperclip/has_attached_file.rb:92:in `block in add_active_record_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `instance_exec' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:142:in `save!' activerecord (4.2.1) lib/active_record/validations.rb:43:in `save!' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:29:in `save!' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `block in save!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `save!' activerecord (4.2.1) lib/active_record/persistence.rb:264:in `block in update!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/persistence.rb:262:in `update!' /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:80:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (26.3ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:34:03 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ecRlKRMZGC6rNkBXLWSVmmzxlzvEq7e/Z175fiKBeGJud7DjzCUQaEn0fRcL9qodbkeK09Tdspb/l29x3nDyA==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Picture"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11115-16a8ols.jpg' FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11115-1jrwril.jpg' CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11115-15n0ds5.jpg' SQL (2.3ms) INSERT INTO `family_gallery_pictures` (`image_file_name`, `image_content_type`, `image_file_size`, `image_updated_at`, `user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES ('10915075_10204275863511434_4444474650773064253_o.jpg', 'image/jpeg', 126116, '2015-08-05 20:34:03', 1, 1, '2015-08-05 20:34:03', '2015-08-05 20:34:03') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 6, '2015-08-05 20:34:03', '2015-08-05 20:34:03') FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 6 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 6, '2015-08-05 20:34:03', '2015-08-05 20:34:03') FamilyGallery::GroupPictureLink Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 6 AND `family_gallery_group_picture_links`.`id` != 6 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11115-mseaui.jpg' SQL (0.3ms) UPDATE `family_gallery_pictures` SET `image_file_name` = '10915075_10204275863511434_4444474650773064253_o.jpg', `image_content_type` = 'image/jpeg', `image_file_size` = 126116, `image_updated_at` = '2015-08-05 20:34:03', `user_uploaded_id` = 1, `user_owner_id` = 1, `created_at` = '2015-08-05 20:34:03', `updated_at` = '2015-08-05 20:34:03', `id` = 6, `width` = 1600, `height` = 1067 WHERE `family_gallery_pictures`.`id` = 6 [paperclip] deleting /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public  (0.4ms) ROLLBACK Completed 500 Internal Server Error in 265ms (ActiveRecord: 22.0ms) Errno::EPERM (Operation not permitted @ unlink_internal - /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public): /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `unlink' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `block in remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1459:in `platform_support' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1453:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:791:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:569:in `block in rm' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `each' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `rm' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:64:in `block in flush_deletes' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `each' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `flush_deletes' paperclip (4.3.0) lib/paperclip/attachment.rb:239:in `save' paperclip (4.3.0) lib/paperclip/has_attached_file.rb:92:in `block in add_active_record_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `instance_exec' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:142:in `save!' activerecord (4.2.1) lib/active_record/validations.rb:43:in `save!' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:29:in `save!' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `block in save!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `save!' activerecord (4.2.1) lib/active_record/persistence.rb:264:in `block in update!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/persistence.rb:262:in `update!' /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:80:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.3ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:35:17 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ecRlKRMZGC6rNkBXLWSVmmzxlzvEq7e/Z175fiKBeGJud7DjzCUQaEn0fRcL9qodbkeK09Tdspb/l29x3nDyA==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Picture"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:12) Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-hl99hr.jpg' FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-g8rp6b.jpg' CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-1ncj565.jpg' SQL (0.3ms) INSERT INTO `family_gallery_pictures` (`image_file_name`, `image_content_type`, `image_file_size`, `image_updated_at`, `user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES ('10915075_10204275863511434_4444474650773064253_o.jpg', 'image/jpeg', 126116, '2015-08-05 20:35:17', 1, 1, '2015-08-05 20:35:17', '2015-08-05 20:35:17') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 7, '2015-08-05 20:35:17', '2015-08-05 20:35:17') FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 7 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 7, '2015-08-05 20:35:17', '2015-08-05 20:35:17') FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 7 AND `family_gallery_group_picture_links`.`id` != 7 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-7sf7dy.jpg' SQL (0.4ms) UPDATE `family_gallery_pictures` SET `image_file_name` = '10915075_10204275863511434_4444474650773064253_o.jpg', `image_content_type` = 'image/jpeg', `image_file_size` = 126116, `image_updated_at` = '2015-08-05 20:35:17', `user_uploaded_id` = 1, `user_owner_id` = 1, `created_at` = '2015-08-05 20:35:17', `updated_at` = '2015-08-05 20:35:17', `id` = 7, `width` = 1600, `height` = 1067 WHERE `family_gallery_pictures`.`id` = 7 [paperclip] deleting /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public  (0.5ms) ROLLBACK Completed 500 Internal Server Error in 227ms (ActiveRecord: 14.6ms) Errno::EPERM (Operation not permitted @ unlink_internal - /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public): /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `unlink' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `block in remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1459:in `platform_support' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1453:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:791:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:569:in `block in rm' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `each' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `rm' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:64:in `block in flush_deletes' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `each' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `flush_deletes' paperclip (4.3.0) lib/paperclip/attachment.rb:239:in `save' paperclip (4.3.0) lib/paperclip/has_attached_file.rb:92:in `block in add_active_record_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `instance_exec' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:142:in `save!' activerecord (4.2.1) lib/active_record/validations.rb:43:in `save!' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:29:in `save!' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `block in save!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `save!' activerecord (4.2.1) lib/active_record/persistence.rb:264:in `block in update!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/persistence.rb:262:in `update!' /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:80:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.4ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:35:57 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ecRlKRMZGC6rNkBXLWSVmmzxlzvEq7e/Z175fiKBeGJud7DjzCUQaEn0fRcL9qodbkeK09Tdspb/l29x3nDyA==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Picture"} Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-vxu7oe.jpg' FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-11vckqi.jpg' CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-18y7sfu.jpg' SQL (0.3ms) INSERT INTO `family_gallery_pictures` (`image_file_name`, `image_content_type`, `image_file_size`, `image_updated_at`, `user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES ('10915075_10204275863511434_4444474650773064253_o.jpg', 'image/jpeg', 126116, '2015-08-05 20:35:57', 1, 1, '2015-08-05 20:35:57', '2015-08-05 20:35:57') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 8, '2015-08-05 20:35:57', '2015-08-05 20:35:57') FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 8 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 8, '2015-08-05 20:35:57', '2015-08-05 20:35:57') FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 8 AND `family_gallery_group_picture_links`.`id` != 8 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11127-1u7rtwl.jpg' SQL (0.3ms) UPDATE `family_gallery_pictures` SET `image_file_name` = '10915075_10204275863511434_4444474650773064253_o.jpg', `image_content_type` = 'image/jpeg', `image_file_size` = 126116, `image_updated_at` = '2015-08-05 20:35:57', `user_uploaded_id` = 1, `user_owner_id` = 1, `created_at` = '2015-08-05 20:35:57', `updated_at` = '2015-08-05 20:35:57', `id` = 8, `width` = 1600, `height` = 1067 WHERE `family_gallery_pictures`.`id` = 8 [paperclip] deleting /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public  (0.5ms) ROLLBACK Completed 500 Internal Server Error in 66ms (ActiveRecord: 3.5ms) Errno::EPERM (Operation not permitted @ unlink_internal - /Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/public): /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `unlink' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1454:in `block in remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1459:in `platform_support' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:1453:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:791:in `remove_file' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:569:in `block in rm' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `each' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/fileutils.rb:568:in `rm' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:64:in `block in flush_deletes' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `each' paperclip (4.3.0) lib/paperclip/storage/filesystem.rb:61:in `flush_deletes' paperclip (4.3.0) lib/paperclip/attachment.rb:239:in `save' paperclip (4.3.0) lib/paperclip/has_attached_file.rb:92:in `block in add_active_record_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `instance_exec' activesupport (4.2.1) lib/active_support/callbacks.rb:446:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:142:in `save!' activerecord (4.2.1) lib/active_record/validations.rb:43:in `save!' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:29:in `save!' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `block in save!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:291:in `save!' activerecord (4.2.1) lib/active_record/persistence.rb:264:in `block in update!' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/persistence.rb:262:in `update!' /Users/kaspernj/Dev/Rails/family_gallery/app/models/family_gallery/picture.rb:80:in `parse_exif' activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:228:in `block in halting_and_conditional' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `each' activesupport (4.2.1) lib/active_support/callbacks.rb:506:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record' activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record' activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks' activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:152:in `block in save' globalize (5.0.1) lib/globalize.rb:26:in `with_locale' globalize (5.0.1) lib/globalize/active_record/instance_methods.rb:151:in `save' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:27:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.3ms) Started POST "/family_gallery/pictures" for ::1 at 2015-08-05 22:38:28 +0200 Processing by FamilyGallery::PicturesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ecRlKRMZGC6rNkBXLWSVmmzxlzvEq7e/Z175fiKBeGJud7DjzCUQaEn0fRcL9qodbkeK09Tdspb/l29x3nDyA==", "group_id"=>"1", "picture"=>{"title"=>"Test", "description"=>"Test test", "image"=>#, @original_filename="10915075_10204275863511434_4444474650773064253_o.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"picture[image]\"; filename=\"10915075_10204275863511434_4444474650773064253_o.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Create Picture"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11165-nesri1.jpg' FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11165-8nmuy3.jpg' CACHE (0.0ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN FamilyGallery::GroupPictureLink Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` IS NULL AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11165-1lhg7es.jpg' SQL (0.3ms) INSERT INTO `family_gallery_pictures` (`image_file_name`, `image_content_type`, `image_file_size`, `image_updated_at`, `user_uploaded_id`, `user_owner_id`, `created_at`, `updated_at`) VALUES ('10915075_10204275863511434_4444474650773064253_o.jpg', 'image/jpeg', 126116, '2015-08-05 20:38:28', 1, 1, '2015-08-05 20:38:28', '2015-08-05 20:38:28') SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `title`, `description`, `family_gallery_picture_id`, `created_at`, `updated_at`) VALUES ('en', 'Test', 'Test test', 9, '2015-08-05 20:38:28', '2015-08-05 20:38:28') FamilyGallery::GroupPictureLink Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 9 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 SQL (0.2ms) INSERT INTO `family_gallery_group_picture_links` (`group_id`, `picture_id`, `created_at`, `updated_at`) VALUES (1, 9, '2015-08-05 20:38:28', '2015-08-05 20:38:28') FamilyGallery::GroupPictureLink Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_group_picture_links` WHERE (`family_gallery_group_picture_links`.`picture_id` = BINARY 9 AND `family_gallery_group_picture_links`.`id` != 9 AND `family_gallery_group_picture_links`.`group_id` = 1) LIMIT 1 Command :: file -b --mime '/var/folders/gy/25w0b3h90k336ly5kj2jkm2h0000gn/T/3cd368285b16eacbf5d23eb8bfef364320150805-11165-cxnvvj.jpg' SQL (0.5ms) UPDATE `family_gallery_pictures` SET `image_file_name` = '10915075_10204275863511434_4444474650773064253_o.jpg', `image_content_type` = 'image/jpeg', `image_file_size` = 126116, `image_updated_at` = '2015-08-05 20:38:28', `user_uploaded_id` = 1, `user_owner_id` = 1, `created_at` = '2015-08-05 20:38:28', `updated_at` = '2015-08-05 20:38:28', `id` = 9, `width` = 1600, `height` = 1067 WHERE `family_gallery_pictures`.`id` = 9  (11.9ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 312ms (ActiveRecord: 32.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:38:28 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.9ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (55.6ms) Completed 200 OK in 631ms (Views: 596.9ms | ActiveRecord: 18.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:38:29 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:39:13 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.4ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (120.0ms) Completed 200 OK in 562ms (Views: 431.8ms | ActiveRecord: 24.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:39:14 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:39:16 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (42.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (58.4ms) Completed 200 OK in 105ms (Views: 97.3ms | ActiveRecord: 1.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:39:17 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:39:18 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"woyANCAGHOtzBi6GNQNzwiC/3j56S5Z1l2jwB/T2K2+20k9jC3rsymiNJnM1mTs8PLUGSdoKTmExC9ZfywXtRg==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 11ms (ActiveRecord: 1.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:39:18 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.5ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (33.3ms) Completed 200 OK in 88ms (Views: 78.6ms | ActiveRecord: 3.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:39:18 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:39:45 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.1ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (57.8ms) Completed 200 OK in 183ms (Views: 84.4ms | ActiveRecord: 45.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:39:45 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:39:46 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (8.4ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (11.9ms) Completed 200 OK in 57ms (Views: 48.9ms | ActiveRecord: 1.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:39:46 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:39:47 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YFy/0tbz5pGx36SCU/LciEDdOPhCX8+kwh43WXxvD9kUAnCF/Y8WsKpUrHdTaJR2XNfgj+IeF7BkfREBQ5zJ8A==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Completed 500 Internal Server Error in 18ms (ActiveRecord: 1.1ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.4ms) Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:39:58 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (40.5ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (120.2ms) Completed 200 OK in 579ms (Views: 458.5ms | ActiveRecord: 15.4ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:39:59 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:40:00 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JL8C98IMlEqcaTBk90ShsqlCY1n1cdnJ9poLbklb+/pQ4c2g6XBka4fiOJH33ulMtUi7LlUwAd1Q+S02dqg90w==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Completed 500 Internal Server Error in 20ms (ActiveRecord: 1.1ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.3ms) Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:42:15 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JL8C98IMlEqcaTBk90ShsqlCY1n1cdnJ9poLbklb+/pQ4c2g6XBka4fiOJH33ulMtUi7LlUwAd1Q+S02dqg90w==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Completed 500 Internal Server Error in 135ms (ActiveRecord: 15.7ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.7ms) Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:42:19 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JL8C98IMlEqcaTBk90ShsqlCY1n1cdnJ9poLbklb+/pQ4c2g6XBka4fiOJH33ulMtUi7LlUwAd1Q+S02dqg90w==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Completed 500 Internal Server Error in 16ms (ActiveRecord: 1.1ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:51:55 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (125.7ms) Completed 200 OK in 753ms (Views: 629.2ms | ActiveRecord: 25.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:51:56 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:51:58 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (37.0ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (43.9ms) Completed 200 OK in 84ms (Views: 76.5ms | ActiveRecord: 1.2ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:51:58 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:51:59 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8kuZ+qYIb9ghFGBV0v+c6AOI3BTTJJWfaELn80kYxj6GFVatjXSf+TqfaKDSZdQWH4IEY3NlTYvOIcGrdusAFw==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Completed 500 Internal Server Error in 50ms (ActiveRecord: 1.1ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (27.3ms) Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:52:11 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8kuZ+qYIb9ghFGBV0v+c6AOI3BTTJJWfaELn80kYxj6GFVatjXSf+TqfaKDSZdQWH4IEY3NlTYvOIcGrdusAFw==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Completed 500 Internal Server Error in 96ms (ActiveRecord: 15.8ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.8ms) Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:52:19 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8kuZ+qYIb9ghFGBV0v+c6AOI3BTTJJWfaELn80kYxj6GFVatjXSf+TqfaKDSZdQWH4IEY3NlTYvOIcGrdusAFw==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.2ms) COMMIT Completed 500 Internal Server Error in 130ms (ActiveRecord: 15.0ms) NoMethodError (undefined method `controller_t' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/resources_controller.rb:46:in `update' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.5ms) Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:52:46 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"8kuZ+qYIb9ghFGBV0v+c6AOI3BTTJJWfaELn80kYxj6GFVatjXSf+TqfaKDSZdQWH4IEY3NlTYvOIcGrdusAFw==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.5ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.2ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 129ms (ActiveRecord: 16.4ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:52:47 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (51.9ms) Completed 200 OK in 353ms (Views: 334.2ms | ActiveRecord: 9.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:52:47 +0200 Started GET "/family_gallery/awesome_translations" for ::1 at 2015-08-05 22:52:54 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.22/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.3ms) Completed 200 OK in 63ms (Views: 62.2ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 22:52:54 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 22:52:54 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 22:52:54 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 22:52:54 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-08-05 22:52:57 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.22/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (2412.9ms) Completed 200 OK in 2438ms (Views: 2436.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 22:52:59 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 22:52:59 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 22:52:59 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 22:52:59 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-08-05 22:53:02 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.22/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (50.0ms) Completed 200 OK in 76ms (Views: 68.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 22:53:02 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 22:53:02 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 22:53:02 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 22:53:02 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-08-05 22:53:22 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HPmCoDiPMWd6fNhOrolK8jqcGeFLquV+2dheoh0+NTVop033E/PBRmH30LuuEwIMJpbBluvrPWp/u3j6Is3zHA==", "t"=>{"family_gallery.resources.resource_was_saved"=>{"da"=>"Resource blev gemt", "de"=>"", "en"=>"Resource was saved"}, "family_gallery.resources.resource_was_updated"=>{"da"=>"Resource blev opdateret", "de"=>"", "en"=>"Resource was updated"}, "family_gallery.resources.resource_was_deleted"=>{"da"=>"Resource blev slettet", "de"=>"", "en"=>"Resource was deleted"}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI= Completed 302 Found in 57ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-08-05 22:53:22 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.22/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (90.6ms) Completed 200 OK in 115ms (Views: 107.7ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 22:53:22 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 22:53:22 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 22:53:22 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 22:53:22 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:53:25 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (41.6ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (48.6ms) Completed 200 OK in 97ms (Views: 89.2ms | ActiveRecord: 1.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:53:25 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:53:26 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3kI9ceGGeeifCgcxgSUtLTOknrvZuNXMQPW8UvOAFdyqHPImyvqJyYSBD8SBv2XTL65GzHn5DdjmlpoKzHPT9Q==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 11ms (ActiveRecord: 1.1ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:53:27 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (17.8ms) Completed 200 OK in 78ms (Views: 68.7ms | ActiveRecord: 2.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:53:27 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-08-05 22:53:57 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"9JR/ISsjVsvu6aacYsHaHp5lOBOpKLHlP/cXgsCk5JSAyrB2AF+m6vVirmliW5Lggm/gZAlpafGZlDHa/1civQ==", "t"=>{"family_gallery.resources.resource_was_saved"=>{"da"=>"Resource blev gemt", "de"=>"", "en"=>"Resource was saved"}, "family_gallery.resources.resource_was_updated"=>{"da"=>"Resource blev opdateret", "de"=>"", "en"=>"Resource was updated"}, "family_gallery.resources.resource_was_deleted"=>{"da"=>"Resource blev slettet", "de"=>"", "en"=>"Resource was deleted"}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI= Completed 302 Found in 102ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-08-05 22:53:57 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.22/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (110.9ms) Completed 200 OK in 140ms (Views: 125.8ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 22:53:57 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 22:53:57 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 22:53:57 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 22:53:57 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:56:09 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.5ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (125.8ms) Completed 200 OK in 791ms (Views: 665.5ms | ActiveRecord: 25.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:56:10 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:56:11 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (40.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (46.0ms) Completed 200 OK in 90ms (Views: 82.4ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:56:11 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:56:12 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qU7DYq/QRWJHzxOYMWuplIZzaLJb0kYUk9IF+rsy5QbdEAw1hKy1Q1xEG20x8eFqmnmwxfuTngA1sSOihMEjLw==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 14ms (ActiveRecord: 1.1ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:56:12 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (19.9ms) Completed 200 OK in 66ms (Views: 56.5ms | ActiveRecord: 2.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:56:12 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:58:38 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (38.8ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (110.8ms) Completed 200 OK in 547ms (Views: 428.5ms | ActiveRecord: 15.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:58:39 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:58:40 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LzomGUzCJ99nke+GWMlZErsn1VEVHD/6X6O7FNP9euRbZOlOZ77X/nwa53NYUxHspy0NJrVd5+75wJ1M7A68zQ==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 13ms (ActiveRecord: 1.2ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:58:40 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.5ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (46.9ms) Completed 200 OK in 90ms (Views: 73.3ms | ActiveRecord: 9.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:58:40 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:59:15 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (38.9ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (107.4ms) Completed 200 OK in 570ms (Views: 454.9ms | ActiveRecord: 16.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:16 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:17 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"F+/HUezSGH0d2ql0hjQolIxwxYKLOZOhcjvG0/4fEQVjsQgGx67oXAZRoYGGrmBqkHod9St4S7XUWOCLwezXLA==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 13ms (ActiveRecord: 1.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:17 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (46.2ms) Completed 200 OK in 90ms (Views: 75.1ms | ActiveRecord: 9.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:17 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:59:28 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (7.5ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (10.9ms) Completed 200 OK in 69ms (Views: 61.2ms | ActiveRecord: 1.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:29 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:30 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2gIophzo+/yE+j8Vj8kpQorg8jRpGTRK+7i3eRHU/TSuXOfxN5QL3Z9xN+CPU2G8luoqQ8lY7F5d25EhLic7HQ==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 13ms (ActiveRecord: 1.2ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:30 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.4ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (35.3ms) Completed 200 OK in 81ms (Views: 71.1ms | ActiveRecord: 2.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:30 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:59:48 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (38.6ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (110.2ms) Completed 200 OK in 572ms (Views: 463.7ms | ActiveRecord: 8.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:49 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:50 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k9udvk38CktPoPypWvLdhGi7GSOnbois3L63lcd7OvvnhVLpZoD6alQr9FxaaJV6dLHBVAcvULh63ZHN+Ij80g==", "picture"=>{"title"=>"Test", "description"=>"Test test"}, "commit"=>"Save", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 13ms (ActiveRecord: 1.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:50 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.4ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (48.5ms) Completed 200 OK in 98ms (Views: 80.1ms | ActiveRecord: 11.2ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:50 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:51 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:51 +0200 Started POST "/family_gallery/locales" for ::1 at 2015-08-05 22:59:56 +0200 Processing by FamilyGallery::LocalesController#create as */* Parameters: {"locale"=>"da"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:56 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (18.8ms) Completed 200 OK in 83ms (Views: 73.7ms | ActiveRecord: 2.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:56 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 22:59:58 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (11.3ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (17.7ms) Completed 200 OK in 68ms (Views: 60.2ms | ActiveRecord: 1.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:58 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:59 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sMvFoPTL8DgxYwVFdH0cdmlPIqJmNyhogkO6uN4pRovElQr337cAGSroDbB051SIdUX61cZ28HwkIJzg4dqAog==", "picture"=>{"title"=>"", "description"=>""}, "commit"=>"Gem", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN SQL (0.2ms) UPDATE `family_gallery_pictures` SET `updated_at` = '2015-08-05 20:59:59' WHERE `family_gallery_pictures`.`id` = 9 SQL (0.2ms) INSERT INTO `family_gallery_picture_translations` (`locale`, `family_gallery_picture_id`, `title`, `description`, `created_at`, `updated_at`) VALUES ('da', 9, '', '', '2015-08-05 20:59:59', '2015-08-05 20:59:59')  (0.5ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 16ms (ActiveRecord: 1.9ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 22:59:59 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (12.8ms) Completed 200 OK in 59ms (Views: 48.6ms | ActiveRecord: 2.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 22:59:59 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 23:01:46 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (7.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (11.8ms) Completed 200 OK in 59ms (Views: 51.0ms | ActiveRecord: 1.1ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:01:46 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:01:47 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"tjt4i0CM5/5PLgjsiXPNRHIbKA2hFCrFl2FFGm8FHSjCZbfca/AX31SlABmJ6YW6bhHwegFV8tExAmNCUPbbAQ==", "picture"=>{"title"=>"", "description"=>""}, "commit"=>"Gem", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 11ms (ActiveRecord: 1.0ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:01:47 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (13.3ms) Completed 200 OK in 67ms (Views: 58.6ms | ActiveRecord: 2.6ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:01:47 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 23:01:55 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (42.2ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (115.1ms) Completed 200 OK in 554ms (Views: 445.5ms | ActiveRecord: 8.0ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:01:55 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:01:56 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rRqEZ5Rc5ZuFsUYaBf3rgu9LMuk2NG1v76i2JnmYONbZREswvyAVup46Tu8FZ6N880HqnpZ1tXtJy5B+Rmv+/w==", "picture"=>{"title"=>"", "description"=>""}, "commit"=>"Gem", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 13ms (ActiveRecord: 1.1ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:01:56 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (45.6ms) Completed 200 OK in 91ms (Views: 76.5ms | ActiveRecord: 8.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:01:56 +0200 Started GET "/family_gallery/pictures/9/edit" for ::1 at 2015-08-05 23:05:02 +0200 Processing by FamilyGallery::PicturesController#edit as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.5ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.4ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/_form.html.haml (40.3ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/edit.html.haml within layouts/family_gallery/application (122.2ms) Completed 200 OK in 749ms (Views: 637.3ms | ActiveRecord: 9.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:05:03 +0200 Started PATCH "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:05:04 +0200 Processing by FamilyGallery::PicturesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TV2pGF9+f5IYlLyFHrTwZd76c6SDgj6JUPJtwWlA4as5A2ZPdAKPswMftHAeLribwvCr0yPD5p32kUuZVrMngg==", "picture"=>{"title"=>"", "description"=>""}, "commit"=>"Gem", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9  (0.1ms) BEGIN  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 13ms (ActiveRecord: 1.1ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:05:04 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.4ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.html.haml within layouts/family_gallery/application (45.7ms) Completed 200 OK in 93ms (Views: 78.1ms | ActiveRecord: 8.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:05:04 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:07 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (16.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (159.6ms) Completed 200 OK in 331ms (Views: 321.6ms | ActiveRecord: 2.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 23:06:08 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:14 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.4ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (33.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.0ms) Completed 200 OK in 108ms (Views: 90.8ms | ActiveRecord: 3.2ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:14 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:21 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.5ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (18.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (28.9ms) Completed 200 OK in 79ms (Views: 70.5ms | ActiveRecord: 2.8ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:21 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:26 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (16.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (30.8ms) Completed 200 OK in 81ms (Views: 72.2ms | ActiveRecord: 2.5ms) Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:27 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:33 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (18.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (39.7ms) Completed 200 OK in 92ms (Views: 82.0ms | ActiveRecord: 2.6ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:33 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:43 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (17.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (30.6ms) Completed 200 OK in 81ms (Views: 71.7ms | ActiveRecord: 2.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:43 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:06:50 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (17.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.5ms) Completed 200 OK in 94ms (Views: 85.7ms | ActiveRecord: 2.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:06:50 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:08:06 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (64.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (36.0ms) Completed 200 OK in 192ms (Views: 117.9ms | ActiveRecord: 25.3ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:08:06 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:08:54 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (18.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.1ms) Completed 200 OK in 85ms (Views: 76.0ms | ActiveRecord: 2.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:08:54 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:09:01 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (17.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.1ms) Completed 200 OK in 80ms (Views: 71.0ms | ActiveRecord: 2.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:09:01 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:09:06 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (16.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (41.6ms) Completed 200 OK in 94ms (Views: 84.9ms | ActiveRecord: 2.3ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:09:06 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:09:18 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} FamilyGallery::Picture Load (0.7ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.html.haml (53.8ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.html.haml within layouts/family_gallery/application (57.6ms) Completed 200 OK in 113ms (Views: 94.1ms | ActiveRecord: 1.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:09:18 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:09:42 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.mobile.haml (8.9ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.mobile.haml within layouts/family_gallery/application (15.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.8ms) Completed 200 OK in 95ms (Views: 86.4ms | ActiveRecord: 1.2ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:09:43 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:10:11 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.mobile.haml (17.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.mobile.haml within layouts/family_gallery/application (21.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.3ms) Completed 200 OK in 152ms (Views: 83.5ms | ActiveRecord: 15.6ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:10:11 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:10:31 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.mobile.haml (8.9ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.mobile.haml within layouts/family_gallery/application (13.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.6ms) Completed 200 OK in 161ms (Views: 74.3ms | ActiveRecord: 18.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:10:31 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:11:05 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.mobile.haml (8.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.mobile.haml within layouts/family_gallery/application (11.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (52.0ms) Completed 200 OK in 193ms (Views: 185.3ms | ActiveRecord: 1.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:11:05 +0200 Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:11:13 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:11:15 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.mobile.haml (7.6ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.mobile.haml within layouts/family_gallery/application (12.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (45.4ms) Completed 200 OK in 100ms (Views: 89.7ms | ActiveRecord: 1.2ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:11:15 +0200 Started GET "/family_gallery/pictures/9/user_taggings/new" for ::1 at 2015-08-05 23:11:58 +0200 Processing by FamilyGallery::UserTaggingsController#new as HTML Parameters: {"picture_id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`email` ASC Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/_form.mobile.haml (6.3ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_taggings/new.mobile.haml within layouts/family_gallery/application (10.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.4ms) Completed 200 OK in 93ms (Views: 84.6ms | ActiveRecord: 1.1ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 23:11:58 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 23:11:58 +0200 Started POST "/family_gallery/pictures/9/user_taggings" for ::1 at 2015-08-05 23:12:05 +0200 Processing by FamilyGallery::UserTaggingsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ET7cDYMmLGmxRgxaWM5CWvdR4KLlzLgDduOEkY4U10JlYBNaqFrcSKrNBK9YVAqk61s41UWNYBfQgKLJsecRaw==", "user_tagging"=>{"user_id"=>"1", "position_top"=>"32", "position_left"=>"34"}, "commit"=>"Gem", "picture_id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::UserTagging Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_user_taggings` WHERE (`family_gallery_user_taggings`.`user_id` = BINARY 1 AND `family_gallery_user_taggings`.`picture_id` = 9) LIMIT 1 SQL (7.1ms) INSERT INTO `family_gallery_user_taggings` (`picture_id`, `tagged_by_id`, `user_id`, `position_top`, `position_left`, `created_at`, `updated_at`) VALUES (9, 1, 1, 32.0, 34.0, '2015-08-05 21:12:05', '2015-08-05 21:12:05')  (0.4ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 24ms (ActiveRecord: 8.8ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:12:05 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.6ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::UserTagging Load (0.5ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::User Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (45.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (30.3ms) Completed 200 OK in 110ms (Views: 95.6ms | ActiveRecord: 9.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:05 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:12:10 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::UserTagging Load (0.4ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (14.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (27.3ms) Completed 200 OK in 78ms (Views: 69.1ms | ActiveRecord: 3.1ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:10 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:11 +0200 Started DELETE "/family_gallery/pictures/9/user_taggings/1" for ::1 at 2015-08-05 23:12:15 +0200 Processing by FamilyGallery::UserTaggingsController#destroy as HTML Parameters: {"authenticity_token"=>"W2+ksmDME+YG2PzdPR8CuKj/DSUDO7I+G89fXf4Va4YvMWvlS7Djxx1T9Cg9hUpGtPXVUqN6aiq9rHkFweatrw==", "picture_id"=>"9", "id"=>"1"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` WHERE `family_gallery_user_taggings`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN SQL (0.2ms) DELETE FROM `family_gallery_user_taggings` WHERE `family_gallery_user_taggings`.`id` = 1  (6.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/pictures/9 Completed 302 Found in 16ms (ActiveRecord: 7.4ms) Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:12:15 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (13.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.0ms) Completed 200 OK in 86ms (Views: 75.0ms | ActiveRecord: 3.2ms) Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:15 +0200 Started GET "/family_gallery/pictures/9" for ::1 at 2015-08-05 23:12:34 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (12.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (30.3ms) Completed 200 OK in 84ms (Views: 75.0ms | ActiveRecord: 2.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/layout/header_bar_bg.png" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/buttons/button_dark_bg.png" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/assets/light_mobile/buttons/menu_icon.png" for ::1 at 2015-08-05 23:12:34 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 23:12:42 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.mobile.haml within layouts/family_gallery/application (8.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (37.8ms) Completed 200 OK in 84ms (Views: 74.3ms | ActiveRecord: 1.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:42 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:43 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:43 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:43 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:43 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:43 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 23:12:44 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (15.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (29.3ms) Completed 200 OK in 79ms (Views: 70.2ms | ActiveRecord: 1.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:44 +0200 Started GET "/family_gallery/groups/1/multiple_pictures/new" for ::1 at 2015-08-05 23:12:46 +0200 Processing by FamilyGallery::MultiplePicturesController#new as HTML Parameters: {"group_id"=>"1"} FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/multiple_pictures/new.mobile.haml within layouts/family_gallery/application (3.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.1ms) Completed 200 OK in 70ms (Views: 60.8ms | ActiveRecord: 1.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:46 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 23:12:49 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (10.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (28.6ms) Completed 200 OK in 67ms (Views: 61.7ms | ActiveRecord: 1.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:12:49 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 23:12:50 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.html.haml within layouts/family_gallery/application (8.8ms) Completed 200 OK in 83ms (Views: 75.2ms | ActiveRecord: 0.9ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:12:51 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 23:13:24 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.mobile.haml within layouts/family_gallery/application (6.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.7ms) Completed 200 OK in 78ms (Views: 69.3ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:13:24 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 23:13:30 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.mobile.haml within layouts/family_gallery/application (8.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (34.2ms) Completed 200 OK in 78ms (Views: 71.1ms | ActiveRecord: 0.8ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:13:30 +0200 Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 23:13:34 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.html.haml within layouts/family_gallery/application (13.9ms) Completed 200 OK in 56ms (Views: 48.2ms | ActiveRecord: 1.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:13:34 +0200 Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 23:14:05 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.mobile.haml within layouts/family_gallery/application (9.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (27.9ms) Completed 200 OK in 70ms (Views: 62.0ms | ActiveRecord: 1.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:14:05 +0200 Started GET "/family_gallery/users/1/edit" for ::1 at 2015-08-05 23:14:07 +0200 Processing by FamilyGallery::UsersController#edit as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.html.haml (13.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/edit.html.haml within layouts/family_gallery/application (24.1ms) Completed 200 OK in 70ms (Views: 63.1ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:14:07 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:14:07 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:14:07 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:14:07 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:14:07 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:14:08 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:14:08 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:14:08 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:14:08 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:14:08 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:14:08 +0200 Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 23:14:25 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.mobile.haml within layouts/family_gallery/application (14.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.7ms) Completed 200 OK in 94ms (Views: 85.7ms | ActiveRecord: 1.4ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:14:25 +0200 Started GET "/family_gallery/users/1/user_roles/new" for ::1 at 2015-08-05 23:14:30 +0200 Processing by FamilyGallery::UserRolesController#new as HTML Parameters: {"user_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/_form.html.haml (4.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/new.html.haml within layouts/family_gallery/application (7.7ms) Completed 200 OK in 55ms (Views: 47.3ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:14:30 +0200 Started GET "/family_gallery/users/1/edit" for ::1 at 2015-08-05 23:14:42 +0200 Processing by FamilyGallery::UsersController#edit as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.html.haml (10.0ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/edit.html.haml within layouts/family_gallery/application (12.6ms) Completed 200 OK in 62ms (Views: 54.3ms | ActiveRecord: 0.7ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:14:42 +0200 Started GET "/family_gallery/users/1/edit" for ::1 at 2015-08-05 23:15:01 +0200 Processing by FamilyGallery::UsersController#edit as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.mobile.haml (11.2ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/edit.mobile.haml within layouts/family_gallery/application (15.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (26.7ms) Completed 200 OK in 76ms (Views: 69.3ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:01 +0200 Started PATCH "/family_gallery/users/1" for ::1 at 2015-08-05 23:15:03 +0200 Processing by FamilyGallery::UsersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"mPOO1rO+Q6Br708KInpv6hEXarGKfkskvHrPL0hk+5/srUGBmMKzgXBkR/8i4CcUDR2yxio/kzAaGel3d5c9tg==", "user"=>{"first_name"=>"Admin", "last_name"=>"User", "email"=>"admin@example.com", "password"=>"[FILTERED]"}, "commit"=>"Update Bruger", "id"=>"1"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` WHERE (`family_gallery_users`.`email` = BINARY 'admin@example.com' AND `family_gallery_users`.`id` != 1) LIMIT 1  (0.1ms) COMMIT Redirected to http://localhost:3000/family_gallery/users/1 Completed 302 Found in 11ms (ActiveRecord: 1.2ms) Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 23:15:03 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.mobile.haml within layouts/family_gallery/application (8.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (28.8ms) Completed 200 OK in 66ms (Views: 58.5ms | ActiveRecord: 1.6ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:03 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 23:15:07 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.4ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.mobile.haml within layouts/family_gallery/application (4.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (46.0ms) Completed 200 OK in 86ms (Views: 76.8ms | ActiveRecord: 1.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:08 +0200 Started GET "/family_gallery/users/new" for ::1 at 2015-08-05 23:15:09 +0200 Processing by FamilyGallery::UsersController#new as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.html.haml (9.7ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/new.html.haml within layouts/family_gallery/application (13.1ms) Completed 200 OK in 63ms (Views: 56.3ms | ActiveRecord: 0.5ms) Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:15:09 +0200 Started GET "/family_gallery/users/new" for ::1 at 2015-08-05 23:15:19 +0200 Processing by FamilyGallery::UsersController#new as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.mobile.haml (9.4ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/new.mobile.haml within layouts/family_gallery/application (13.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.8ms) Completed 200 OK in 81ms (Views: 73.5ms | ActiveRecord: 0.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:19 +0200 Started POST "/family_gallery/users" for ::1 at 2015-08-05 23:15:21 +0200 Processing by FamilyGallery::UsersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+YymMG19raORK3fTb1wvR2dHGrCf0MnVr5rqH++T/9eN0mlnRgFdgoqgfyZvxme5e03Cxz+REcEJ+cxH0GA5/g==", "user"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Create Bruger"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` WHERE `family_gallery_users`.`email` = BINARY '' LIMIT 1  (0.1ms) ROLLBACK Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/_form.mobile.haml (9.8ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/new.mobile.haml within layouts/family_gallery/application (13.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (35.0ms) Completed 200 OK in 85ms (Views: 74.5ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:22 +0200 Started GET "/family_gallery/users" for ::1 at 2015-08-05 23:15:29 +0200 Processing by FamilyGallery::UsersController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` ORDER BY `family_gallery_users`.`id` DESC LIMIT 30 OFFSET 0 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/index.mobile.haml within layouts/family_gallery/application (3.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (30.1ms) Completed 200 OK in 65ms (Views: 57.5ms | ActiveRecord: 0.8ms) Started GET "/family_gallery/users/1" for ::1 at 2015-08-05 23:15:31 +0200 Processing by FamilyGallery::UsersController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_pictures`.`id` = `family_gallery_user_taggings`.`picture_id` WHERE `family_gallery_user_taggings`.`user_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`user_uploaded_id` = 1 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 CACHE (0.0ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 [["user_id", 1]] Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/users/show.mobile.haml within layouts/family_gallery/application (7.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (28.9ms) Completed 200 OK in 68ms (Views: 60.1ms | ActiveRecord: 1.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:31 +0200 Started GET "/family_gallery/users/1/user_roles/new" for ::1 at 2015-08-05 23:15:34 +0200 Processing by FamilyGallery::UserRolesController#new as HTML Parameters: {"user_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/_form.html.haml (3.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/new.html.haml within layouts/family_gallery/application (5.6ms) Completed 200 OK in 65ms (Views: 56.0ms | ActiveRecord: 0.8ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for ::1 at 2015-08-05 23:15:34 +0200 Started GET "/family_gallery/users/1/user_roles/new" for ::1 at 2015-08-05 23:15:55 +0200 Processing by FamilyGallery::UserRolesController#new as HTML Parameters: {"user_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/_form.mobile.haml (4.1ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/new.mobile.haml within layouts/family_gallery/application (8.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (29.5ms) Completed 200 OK in 75ms (Views: 64.7ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:55 +0200 Started POST "/family_gallery/users/1/user_roles" for ::1 at 2015-08-05 23:15:58 +0200 Processing by FamilyGallery::UserRolesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"uTJoesXyajrF9xmvrFrRmxA7y02VNdWxqLKnRVwL95rNbKct7o6aG958EVqswJllDDETOjV0DaUO0YEdY/gxsw==", "user_role"=>{"role"=>"administrator"}, "commit"=>"Create Brugerrolle", "user_id"=>"1"} FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1  (0.1ms) BEGIN FamilyGallery::UserRole Exists (0.4ms) SELECT 1 AS one FROM `family_gallery_user_roles` WHERE (`family_gallery_user_roles`.`role` = BINARY 'administrator' AND `family_gallery_user_roles`.`user_id` = 1) LIMIT 1  (0.1ms) ROLLBACK Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/_form.mobile.haml (3.6ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/user_roles/new.mobile.haml within layouts/family_gallery/application (6.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (36.5ms) Completed 200 OK in 86ms (Views: 70.9ms | ActiveRecord: 1.3ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:15:58 +0200 Started GET "/family_gallery/groups" for ::1 at 2015-08-05 23:16:04 +0200 Processing by FamilyGallery::GroupsController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE (1=1) ORDER BY `family_gallery_groups`.`id` ASC LIMIT 30 OFFSET 0 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/index.mobile.haml within layouts/family_gallery/application (3.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.2ms) Completed 200 OK in 74ms (Views: 64.8ms | ActiveRecord: 0.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:04 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:05 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:05 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:05 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:05 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:05 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 23:16:07 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (7.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (28.7ms) Completed 200 OK in 63ms (Views: 58.4ms | ActiveRecord: 1.8ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:07 +0200 Started GET "/family_gallery/groups/1/pictures/9" for ::1 at 2015-08-05 23:16:08 +0200 Processing by FamilyGallery::PicturesController#show as HTML Parameters: {"group_id"=>"1", "id"=>"9"} FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` WHERE `family_gallery_pictures`.`id` = 9 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group Load (0.1ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 AND (family_gallery_pictures.id < 9) ORDER BY `family_gallery_pictures`.`id` DESC LIMIT 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 AND (family_gallery_pictures.id > 9) ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 1 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Group Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 LIMIT 1 FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 CACHE (0.0ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 LIMIT 1 [["id", 1]] FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_groups`.`id` = `family_gallery_group_picture_links`.`group_id` WHERE `family_gallery_group_picture_links`.`picture_id` = 9 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::UserTagging Load (0.2ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 FamilyGallery::UserTagging Load (0.3ms) SELECT `family_gallery_user_taggings`.* FROM `family_gallery_user_taggings` INNER JOIN `family_gallery_users` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 ORDER BY family_gallery_users.first_name, family_gallery_users.last_name, family_gallery_users.email FamilyGallery::User Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_users` INNER JOIN `family_gallery_user_taggings` ON `family_gallery_users`.`id` = `family_gallery_user_taggings`.`user_id` WHERE `family_gallery_user_taggings`.`picture_id` = 9 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/pictures/show.mobile.haml within layouts/family_gallery/application (11.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (27.6ms) Completed 200 OK in 73ms (Views: 60.7ms | ActiveRecord: 3.3ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:08 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 23:16:12 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (10.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.1ms) Completed 200 OK in 76ms (Views: 67.6ms | ActiveRecord: 1.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:12 +0200 Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 23:16:22 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture::Translation Load (0.4ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Picture Exists (0.3ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (12.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.5ms) Completed 200 OK in 81ms (Views: 72.4ms | ActiveRecord: 2.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:22 +0200 Started GET "/family_gallery/groups/1/edit" for ::1 at 2015-08-05 23:16:23 +0200 Processing by FamilyGallery::GroupsController#edit as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/_form.mobile.haml (7.3ms) Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/edit.mobile.haml within layouts/family_gallery/application (13.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (35.1ms) Completed 200 OK in 85ms (Views: 77.3ms | ActiveRecord: 1.0ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:23 +0200 Started PATCH "/family_gallery/groups/1" for ::1 at 2015-08-05 23:16:28 +0200 Processing by FamilyGallery::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"j5qwK0QRO899YWFAeRsHXTyYLCD7UeOSF+EegxLJl2D7xH98b23L7mbqabV5gU+jIJL0V1sQO4axgjjbLTpRSQ==", "group"=>{"name"=>"Gruppe 1", "description"=>"Dette er gruppe 1"}, "commit"=>"Update Gruppe", "id"=>"1"} FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.1ms) BEGIN FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 SQL (0.2ms) UPDATE `family_gallery_groups` SET `updated_at` = '2015-08-05 21:16:28' WHERE `family_gallery_groups`.`id` = 1 SQL (2.1ms) INSERT INTO `family_gallery_group_translations` (`locale`, `family_gallery_group_id`, `name`, `description`, `created_at`, `updated_at`) VALUES ('da', 1, 'Gruppe 1', 'Dette er gruppe 1', '2015-08-05 21:16:28', '2015-08-05 21:16:28')  (6.2ms) COMMIT Redirected to http://localhost:3000/family_gallery/groups/1 Completed 302 Found in 22ms (ActiveRecord: 9.5ms) Started GET "/family_gallery/groups/1" for ::1 at 2015-08-05 23:16:28 +0200 Processing by FamilyGallery::GroupsController#show as HTML Parameters: {"id"=>"1"} FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` WHERE `family_gallery_groups`.`id` = 1 LIMIT 1 FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.5ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`id` ASC LIMIT 6 FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 FamilyGallery::Picture Exists (0.2ms) SELECT 1 AS one FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 LIMIT 1 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/groups/show.mobile.haml within layouts/family_gallery/application (18.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (27.3ms) Completed 200 OK in 76ms (Views: 68.9ms | ActiveRecord: 1.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:28 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 23:16:36 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.2ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (7.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (28.8ms) Completed 200 OK in 65ms (Views: 60.4ms | ActiveRecord: 1.8ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:16:36 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 23:17:09 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.3ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (43.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.5ms) Completed 200 OK in 157ms (Views: 97.6ms | ActiveRecord: 20.3ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:17:09 +0200 Started GET "/family_gallery/" for ::1 at 2015-08-05 23:17:42 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (8.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.0ms) Completed 200 OK in 72ms (Views: 66.5ms | ActiveRecord: 1.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:17:42 +0200 Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:17:45 +0200 AbstractController::ActionNotFound (The action 'new' could not be found for FamilyGallery::LocalesController): actionpack (4.2.1) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.6ms) Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:17:53 +0200 Processing by FamilyGallery::LocalesController#new as HTML Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) ActionView::MissingTemplate (Missing template family_gallery/locales/new, family_gallery/base/new with {:locale=>[:da, :en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in: * "/Users/kaspernj/Dev/Rails/family_gallery/spec/dummy/app/views" * "/Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/agent_helpers-0.0.5/app/views" * "/Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views" * "/Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/devise-3.5.1/app/views" * "/Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views" * "/Users/kaspernj/Dev/Rails/family_gallery/app/views" ): actionview (4.2.1) lib/action_view/path_set.rb:46:in `find' actionview (4.2.1) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.1) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.1) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:43:in `render' light_mobile (0.0.11) lib/light_mobile/dynamic_renderer.rb:26:in `render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:25:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (30.7ms) Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:18:37 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (7.0ms) FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (35.7ms) Completed 200 OK in 122ms (Views: 109.1ms | ActiveRecord: 11.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:18:37 +0200 Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:18:49 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (4.5ms) FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.9ms) Completed 200 OK in 71ms (Views: 69.2ms | ActiveRecord: 0.7ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:18:49 +0200 Started POST "/family_gallery/locales/new" for ::1 at 2015-08-05 23:18:55 +0200 ActionController::RoutingError (No route matches [POST] "/family_gallery/locales/new"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (52.7ms) Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:19:00 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (4.6ms) FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (33.3ms) Completed 200 OK in 68ms (Views: 66.7ms | ActiveRecord: 0.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:19:00 +0200 Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:19:10 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (4.5ms) FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.2ms) Completed 200 OK in 70ms (Views: 68.5ms | ActiveRecord: 0.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:19:10 +0200 Started POST "/family_gallery/locales/new" for ::1 at 2015-08-05 23:19:13 +0200 ActionController::RoutingError (No route matches [POST] "/family_gallery/locales/new"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (39.5ms) Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:19:26 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (4.2ms) FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.2ms) Completed 200 OK in 82ms (Views: 81.1ms | ActiveRecord: 0.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:19:26 +0200 Started POST "/family_gallery/locales" for ::1 at 2015-08-05 23:19:28 +0200 Processing by FamilyGallery::LocalesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qqfHkR1zQmJe9LHVAeELx5WpV9wMfRcifoO7ceRxVX3e+QjGNg+yQ0V/uSABe0M5iaOPq6w8zzbY4J0p24KTVA==", "locales"=>{"locale"=>"en"}, "commit"=>"Gem"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/family_gallery/locales" for ::1 at 2015-08-05 23:20:02 +0200 Processing by FamilyGallery::LocalesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qqfHkR1zQmJe9LHVAeELx5WpV9wMfRcifoO7ceRxVX3e+QjGNg+yQ0V/uSABe0M5iaOPq6w8zzbY4J0p24KTVA==", "locales"=>{"locale"=>"en"}, "commit"=>"Gem"} Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `welcome_index_url' for #): /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/locales_controller.rb:10:in `block (2 levels) in create' actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:215:in `call' actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:215:in `respond_to' /Users/kaspernj/Dev/Rails/family_gallery/app/controllers/family_gallery/locales_controller.rb:9:in `create' actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call' omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!' omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call' omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.1) lib/rack/etag.rb:24:in `call' rack (1.6.1) lib/rack/conditionalget.rb:38:in `call' rack (1.6.1) lib/rack/head.rb:13:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call' activerecord (4.2.1) lib/active_record/migration.rb:378:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks' activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (29.3ms) Started POST "/family_gallery/locales" for ::1 at 2015-08-05 23:20:45 +0200 Processing by FamilyGallery::LocalesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qqfHkR1zQmJe9LHVAeELx5WpV9wMfRcifoO7ceRxVX3e+QjGNg+yQ0V/uSABe0M5iaOPq6w8zzbY4J0p24KTVA==", "locales"=>{"locale"=>"en"}, "commit"=>"Gem"} Redirected to http://localhost:3000/family_gallery/ Completed 302 Found in 9ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 23:20:45 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.2ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94) FamilyGallery::UserRole Load (0.4ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.2ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.4ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.4ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (130.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (114.9ms) Completed 200 OK in 605ms (Views: 487.3ms | ActiveRecord: 32.1ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:20:46 +0200 Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:20:48 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (31.4ms) FamilyGallery::User Load (0.4ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.1ms) Completed 200 OK in 90ms (Views: 88.8ms | ActiveRecord: 0.6ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:20:48 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:20:49 +0200 Started POST "/family_gallery/locales" for ::1 at 2015-08-05 23:20:52 +0200 Processing by FamilyGallery::LocalesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4m6zByCpg/t7YGSw4kcsYRMeQ7yWYdj1LTpf47LGk6aWMHxQC9Vz2mDrbEXi3WSfDxSbyzYgAOGLWXm7jTVVjw==", "locales"=>{"locale"=>"en"}, "commit"=>"Gem"} Redirected to http://localhost:3000/family_gallery/ Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 23:20:52 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (9.7ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (29.1ms) Completed 200 OK in 67ms (Views: 61.4ms | ActiveRecord: 2.1ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:20:52 +0200 Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:21:13 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (3.9ms) FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (31.4ms) Completed 200 OK in 61ms (Views: 59.8ms | ActiveRecord: 0.5ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:21:13 +0200 Started POST "/family_gallery/locales" for ::1 at 2015-08-05 23:21:16 +0200 Processing by FamilyGallery::LocalesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nWykNG6e7M8uKhmYwf0vh8yx6sK6fEPvnGa7FlklDMPpMmtjReIc7jWhEW3BZ2d50LsytRo9m/s6BZ1OZtbK6g==", "locale"=>"en", "commit"=>"Gem"} Redirected to http://localhost:3000/family_gallery/ Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 23:21:16 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.4ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.4ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.3ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (10.6ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (36.4ms) Completed 200 OK in 77ms (Views: 71.9ms | ActiveRecord: 2.1ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:21:16 +0200 Started GET "/family_gallery/locales/new" for ::1 at 2015-08-05 23:21:21 +0200 Processing by FamilyGallery::LocalesController#new as HTML Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/locales/new.mobile.haml within layouts/family_gallery/application (5.7ms) FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.2ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1 Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (41.3ms) Completed 200 OK in 76ms (Views: 74.5ms | ActiveRecord: 0.6ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:21:21 +0200 Started POST "/family_gallery/locales" for ::1 at 2015-08-05 23:21:23 +0200 Processing by FamilyGallery::LocalesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"9SpMnPC4LZswDXX568zkgFe16WyJAu1BJ4mrPv36v2eBdIPL28TduiuGfQzrVqx+S78xGylDNVWB6o1mwgl5Tg==", "locale"=>"da", "commit"=>"Save"} Redirected to http://localhost:3000/family_gallery/ Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/" for ::1 at 2015-08-05 23:21:23 +0200 Processing by FamilyGallery::WelcomeController#index as HTML FamilyGallery::User Load (0.3ms) SELECT `family_gallery_users`.* FROM `family_gallery_users` WHERE `family_gallery_users`.`id` = 1 ORDER BY `family_gallery_users`.`id` ASC LIMIT 1 FamilyGallery::UserRole Load (0.3ms) SELECT `family_gallery_user_roles`.* FROM `family_gallery_user_roles` WHERE `family_gallery_user_roles`.`user_id` = 1  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group Load (0.3ms) SELECT `family_gallery_groups`.* FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=1) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 FamilyGallery::Group::Translation Load (0.2ms) SELECT `family_gallery_group_translations`.* FROM `family_gallery_group_translations` WHERE `family_gallery_group_translations`.`family_gallery_group_id` = 1 FamilyGallery::Picture Load (0.3ms) SELECT `family_gallery_pictures`.* FROM `family_gallery_pictures` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE `family_gallery_group_picture_links`.`group_id` = 1 ORDER BY `family_gallery_pictures`.`updated_at` DESC FamilyGallery::Picture::Translation Load (0.2ms) SELECT `family_gallery_picture_translations`.* FROM `family_gallery_picture_translations` WHERE `family_gallery_picture_translations`.`family_gallery_picture_id` = 9 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.mobile.haml within layouts/family_gallery/application (8.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/light_mobile-0.0.11/app/views/layouts/_light_mobile_basic_layout.mobile.haml (32.1ms) Completed 200 OK in 71ms (Views: 66.2ms | ActiveRecord: 1.9ms) Started GET "/assets/light_mobile/buttons.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/flash_errors.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/simple_form.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/menu.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/tabs.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/tables.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/application.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/basic_layout.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/family_gallery/application_mobile.self.css?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/flash_errors.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/menu.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/tabs.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/application.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/light_mobile/basic_layout.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/assets/family_gallery/application_mobile.self.js?body=1" for ::1 at 2015-08-05 23:21:23 +0200 Started GET "/family_gallery/awesome_translations/handlers" for ::1 at 2015-08-05 23:21:56 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (3.6ms) Completed 200 OK in 76ms (Views: 74.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:21:56 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:21:56 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:21:56 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:21:56 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-08-05 23:22:02 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (2424.3ms) Completed 200 OK in 2442ms (Views: 2441.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:22:05 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:22:05 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:22:05 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:22:05 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-08-05 23:22:07 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (34.4ms) Completed 200 OK in 63ms (Views: 53.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:22:08 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:22:08 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:22:08 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:22:08 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler" for ::1 at 2015-08-05 23:22:49 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"library_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (2411.5ms) Completed 200 OK in 2433ms (Views: 2432.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:22:51 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:22:51 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:22:51 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:22:51 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI=" for ::1 at 2015-08-05 23:22:55 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvcmVzb3VyY2VzX2NvbnRyb2xsZXIucmI="} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (38.7ms) Completed 200 OK in 65ms (Views: 55.5ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:22:55 +0200 Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:22:55 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:22:55 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:22:55 +0200 Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-08-05 23:22:57 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (23.1ms) Completed 200 OK in 50ms (Views: 41.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:22:57 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:22:57 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:22:57 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:22:57 +0200 Started PUT "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-08-05 23:23:03 +0200 Processing by AwesomeTranslations::GroupsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"pk6NoanHVgNsA8Tv5Y3Kj2vlNJxrvMm5oLqGGRMD/1HSEEL2grumIneIzBrlF4Jxd+/s68v9Ea0G2aBBLPA5eA==", "t"=>{"family_gallery.user_taggings.create.tagging_was_saved"=>{"da"=>"Tagging blev gemt", "de"=>"", "en"=>"Tagging was saved"}}, "commit"=>"Save", "handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Redirected to http://localhost:3000/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi Completed 302 Found in 34ms (ActiveRecord: 0.0ms) Started GET "/family_gallery/awesome_translations/handlers/library_handler/groups/L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi" for ::1 at 2015-08-05 23:23:03 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"library_handler", "id"=>"L1VzZXJzL2thc3Blcm5qL0Rldi9SYWlscy9mYW1pbHlfZ2FsbGVyeS9hcHAvY29udHJvbGxlcnMvZmFtaWx5X2dhbGxlcnkvdXNlcl90YWdnaW5nc19jb250cm9sbGVyLnJi"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (60.9ms) Completed 200 OK in 88ms (Views: 77.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for ::1 at 2015-08-05 23:23:04 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for ::1 at 2015-08-05 23:23:04 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for ::1 at 2015-08-05 23:23:04 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for ::1 at 2015-08-05 23:23:04 +0200 Started GET "/awesome_translations" for 127.0.0.1 at 2015-08-05 23:45:28 +0200 ActionController::RoutingError (No route matches [GET] "/awesome_translations"): actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.1) lib/rack/methodoverride.rb:22:in `call' rack (1.6.1) lib/rack/runtime.rb:18:in `call' activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.1) lib/rack/sendfile.rb:113:in `call' railties (4.2.1) lib/rails/engine.rb:518:in `call' railties (4.2.1) lib/rails/application.rb:164:in `call' rack (1.6.1) lib/rack/lock.rb:17:in `call' rack (1.6.1) lib/rack/content_length.rb:15:in `call' rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/kaspernj/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.1ms) Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.8ms) Started GET "/" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/family_gallery" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Processing by FamilyGallery::WelcomeController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from add_active_record_callbacks at /Users/kaspernj/.rvm/gems/ruby-2.1.2/bundler/gems/paperclip-47b540d5bc3f/lib/paperclip/has_attached_file.rb:94)  (0.3ms) SELECT COUNT(*) AS count_all, family_gallery_groups.id AS family_gallery_groups_id FROM `family_gallery_groups` INNER JOIN `family_gallery_group_picture_links` ON `family_gallery_group_picture_links`.`group_id` = `family_gallery_groups`.`id` INNER JOIN `family_gallery_pictures` ON `family_gallery_pictures`.`id` = `family_gallery_group_picture_links`.`picture_id` WHERE (1=0) GROUP BY family_gallery_groups.id ORDER BY family_gallery_pictures.updated_at DESC LIMIT 25 Rendered /Users/kaspernj/Dev/Rails/family_gallery/app/views/family_gallery/welcome/index.html.haml within layouts/family_gallery/application (69.7ms) Completed 200 OK in 404ms (Views: 376.2ms | ActiveRecord: 2.5ms) Started GET "/assets/family_gallery/layout.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/pictures.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/groups.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/user_taggings.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/application.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/locales.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/pictures.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/user_taggings.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/assets/family_gallery/application.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:32 +0200 Started GET "/family_gallery/awesome_translations" for 127.0.0.1 at 2015-08-05 23:45:35 +0200 Processing by AwesomeTranslations::HandlersController#index as HTML Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/handlers/index.html.haml within layouts/awesome_translations/application (2.7ms) Completed 200 OK in 35ms (Views: 26.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:35 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:35 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:35 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:35 +0200 Started GET "/family_gallery/awesome_translations/handlers/rails_handler" for 127.0.0.1 at 2015-08-05 23:45:38 +0200 Processing by AwesomeTranslations::HandlersController#show as HTML Parameters: {"id"=>"rails_handler"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/handlers/show.html.haml within layouts/awesome_translations/application (15.0ms) Completed 200 OK in 41ms (Views: 32.6ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:38 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:38 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:38 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:38 +0200 Started GET "/family_gallery/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-08-05 23:45:40 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (25.7ms) Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:40 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:40 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:45:40 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:45:40 +0200 Started GET "/family_gallery/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-08-05 23:48:03 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (78.4ms) Completed 200 OK in 324ms (Views: 320.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:48:04 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:48:04 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:48:04 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:48:04 +0200 Started GET "/family_gallery/awesome_translations/handlers/rails_handler/groups/date_time" for 127.0.0.1 at 2015-08-05 23:48:24 +0200 Processing by AwesomeTranslations::GroupsController#show as HTML Parameters: {"handler_id"=>"rails_handler", "id"=>"date_time"} Rendered /Users/kaspernj/.rvm/gems/ruby-2.1.2/gems/awesome_translations-0.0.23/app/views/awesome_translations/groups/show.html.haml within layouts/awesome_translations/application (110.1ms) Completed 200 OK in 390ms (Views: 387.4ms | ActiveRecord: 0.0ms) Started GET "/assets/awesome_translations/application.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:48:24 +0200 Started GET "/assets/awesome_translations/layout.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:48:24 +0200 Started GET "/assets/awesome_translations/groups.self.css?body=1" for 127.0.0.1 at 2015-08-05 23:48:24 +0200 Started GET "/assets/awesome_translations/application.self.js?body=1" for 127.0.0.1 at 2015-08-05 23:48:24 +0200