(36.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_number" integer, "employee_id" integer, "created_at" datetime, "updated_at" datetime)   (47.6ms) CREATE INDEX "index_accounts_on_employee_id" ON "accounts" ("employee_id")  (34.6ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "customer_id" integer, "created_at" datetime, "updated_at" datetime)   (34.5ms) CREATE INDEX "index_comments_on_customer_id" ON "comments" ("customer_id")  (29.0ms) CREATE TABLE "customers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "active" boolean, "group_id" integer, "created_at" datetime, "updated_at" datetime)   (49.0ms) CREATE INDEX "index_customers_on_group_id" ON "customers" ("group_id")  (34.5ms) CREATE TABLE "employees" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "income" integer, "bonus" boolean, "position_id" integer, "created_at" datetime, "updated_at" datetime)   (26.5ms) CREATE INDEX "index_employees_on_position_id" ON "employees" ("position_id")  (37.2ms) CREATE TABLE "employees_skills" ("employee_id" integer, "skill_id" integer, "created_at" datetime, "updated_at" datetime)   (29.0ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  (40.2ms) CREATE TABLE "positions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (35.0ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)  (31.5ms) CREATE INDEX "index_projects_on_employee_id" ON "projects" ("employee_id")  (31.1ms) CREATE TABLE "skills" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  (32.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)   (31.5ms) CREATE INDEX "index_tasks_on_project_id" ON "tasks" ("project_id")  (37.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime)   (34.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (37.5ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (26.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (29.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (31.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20131213195422')  (39.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204163517')  (32.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131213193133')  (29.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204162705')  (26.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131017123223')  (29.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207080750')  (37.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131017141521')  (34.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207080009')  (39.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131203150600')  (42.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207081215')  (23.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204163255')  (29.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20131203143718') Employee Load (0.2ms) SELECT "employees".* FROM "employees" ORDER BY "employees"."id" ASC LIMIT 1 SQLite3::SQLException: no such table: employees: SELECT "employees".* FROM "employees" ORDER BY "employees"."id" ASC LIMIT 1  (35.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (23.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCustomers (20131017123223)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "customers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "active" boolean, "group_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_customers_on_group_id" ON "customers" ("group_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131017123223"]]  (38.2ms) commit transaction Migrating to DeviseCreateUsers (20131017141521)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131017141521"]]  (47.0ms) commit transaction Migrating to CreateGroups (20131203143718)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131203143718"]]  (45.4ms) commit transaction Migrating to CreateComment (20131203150600)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "customer_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_comments_on_customer_id" ON "comments" ("customer_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131203150600"]]  (41.2ms) commit transaction Migrating to CreateEmployees (20131204162705)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "employees" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "income" integer, "bonus" boolean, "position_id" integer, "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE INDEX "index_employees_on_position_id" ON "employees" ("position_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131204162705"]]  (26.6ms) commit transaction Migrating to CreatePositions (20131204163255)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "positions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131204163255"]]  (33.7ms) commit transaction Migrating to CreateTasks (20131204163517)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_tasks_on_employee_id" ON "tasks" ("employee_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131204163517"]]  (27.4ms) commit transaction Migrating to CreateAccounts (20131207080009)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_number" integer, "employee_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_accounts_on_employee_id" ON "accounts" ("employee_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131207080009"]]  (39.3ms) commit transaction Migrating to CreateSkills (20131207080750)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "skills" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131207080750"]]  (49.2ms) commit transaction Migrating to EmployeesSkills (20131207081215)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "employees_skills" ("employee_id" integer, "skill_id" integer, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131207081215"]]  (31.9ms) commit transaction Migrating to CreateProjects (20131213193133)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)  (0.2ms) CREATE INDEX "index_projects_on_employee_id" ON "projects" ("employee_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131213193133"]]  (47.9ms) commit transaction Migrating to ChangeTasksAssociations (20131213195422)  (0.1ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "tindex_atasks_on_employee_id" ON "atasks" ("project_id")  (0.1ms) SELECT * FROM "tasks"  (0.2ms) DROP TABLE "tasks"  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_tasks_on_employee_id" ON "tasks" ("project_id")  (0.1ms) SELECT * FROM "atasks"  (0.1ms) DROP TABLE "atasks"  (0.1ms) DROP INDEX "index_tasks_on_employee_id"  (0.1ms) CREATE INDEX "index_tasks_on_project_id" ON "tasks" ("project_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131213195422"]]  (40.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (36.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_number" integer, "employee_id" integer, "created_at" datetime, "updated_at" datetime)  (34.2ms) CREATE INDEX "index_accounts_on_employee_id" ON "accounts" ("employee_id")  (35.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "customer_id" integer, "created_at" datetime, "updated_at" datetime)  (29.8ms) CREATE INDEX "index_comments_on_customer_id" ON "comments" ("customer_id")  (50.7ms) CREATE TABLE "customers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "name" varchar(255), "active" boolean, "group_id" integer, "created_at" datetime, "updated_at" datetime)  (37.3ms) CREATE INDEX "index_customers_on_group_id" ON "customers" ("group_id")  (31.9ms) CREATE TABLE "employees" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "income" integer, "bonus" boolean, "position_id" integer, "created_at" datetime, "updated_at" datetime)  (34.9ms) CREATE INDEX "index_employees_on_position_id" ON "employees" ("position_id")  (27.2ms) CREATE TABLE "employees_skills" ("employee_id" integer, "skill_id" integer, "created_at" datetime, "updated_at" datetime)  (36.5ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (24.6ms) CREATE TABLE "positions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  (34.7ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)   (37.9ms) CREATE INDEX "index_projects_on_employee_id" ON "projects" ("employee_id")  (31.4ms) CREATE TABLE "skills" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (29.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)  (46.5ms) CREATE INDEX "index_tasks_on_project_id" ON "tasks" ("project_id")  (28.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime)  (31.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (29.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (40.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (27.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT version FROM "schema_migrations"  (24.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131213195422')  (26.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204163517')  (34.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131213193133')  (37.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204162705')  (36.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131017123223')  (34.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207080750')  (37.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131017141521')  (31.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207080009')  (34.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131203150600')  (29.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207081215')  (41.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204163255')  (42.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131203143718')  (44.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (37.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to DeviseCreateUsers (20131017141521)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131017141521"]]  (41.4ms) commit transaction Migrating to CreateEmployees (20131204162705)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "employees" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "income" integer, "bonus" boolean, "position_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_employees_on_position_id" ON "employees" ("position_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131204162705"]]  (44.0ms) commit transaction Migrating to CreatePositions (20131204163255)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "positions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131204163255"]]  (51.7ms) commit transaction Migrating to CreateTasks (20131204163517)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)  (0.1ms) CREATE INDEX "index_tasks_on_employee_id" ON "tasks" ("employee_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131204163517"]]  (43.5ms) commit transaction Migrating to CreateAccounts (20131207080009)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_number" integer, "employee_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_accounts_on_employee_id" ON "accounts" ("employee_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131207080009"]]  (38.9ms) commit transaction Migrating to CreateSkills (20131207080750)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "skills" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131207080750"]]  (32.0ms) commit transaction Migrating to EmployeesSkills (20131207081215)  (0.2ms) begin transaction  (0.4ms) CREATE TABLE "employees_skills" ("employee_id" integer, "skill_id" integer, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131207081215"]]  (38.7ms) commit transaction Migrating to CreateProjects (20131213193133)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)  (0.2ms) CREATE INDEX "index_projects_on_employee_id" ON "projects" ("employee_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131213193133"]]  (38.3ms) commit transaction Migrating to ChangeTasksAssociations (20131213195422)  (0.1ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "tindex_atasks_on_employee_id" ON "atasks" ("project_id")  (0.1ms) SELECT * FROM "tasks"  (0.2ms) DROP TABLE "tasks"  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)   (0.1ms) CREATE INDEX "index_tasks_on_employee_id" ON "tasks" ("project_id")  (0.1ms) SELECT * FROM "atasks"  (0.1ms) DROP TABLE "atasks"  (0.1ms) DROP INDEX "index_tasks_on_employee_id"  (0.1ms) CREATE INDEX "index_tasks_on_project_id" ON "tasks" ("project_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131213195422"]]  (46.3ms) commit transaction Migrating to AddTitleToEmployees (20131220193113)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "employees" ADD "title" varchar(255) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131220193113"]]  (46.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (38.9ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "account_number" integer, "employee_id" integer, "created_at" datetime, "updated_at" datetime)   (23.6ms) CREATE INDEX "index_accounts_on_employee_id" ON "accounts" ("employee_id")  (29.2ms) CREATE TABLE "employees" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "income" integer, "bonus" boolean, "position_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255))   (29.2ms) CREATE INDEX "index_employees_on_position_id" ON "employees" ("position_id")  (37.2ms) CREATE TABLE "employees_skills" ("employee_id" integer, "skill_id" integer, "created_at" datetime, "updated_at" datetime)   (34.9ms) CREATE TABLE "positions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)  (28.9ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "employee_id" integer, "created_at" datetime, "updated_at" datetime)   (37.5ms) CREATE INDEX "index_projects_on_employee_id" ON "projects" ("employee_id")  (30.1ms) CREATE TABLE "skills" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (47.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "project_id" integer, "created_at" datetime, "updated_at" datetime)  (45.4ms) CREATE INDEX "index_tasks_on_project_id" ON "tasks" ("project_id")  (30.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime, "updated_at" datetime)  (46.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (32.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (41.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (64.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (47.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131220193113')  (42.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204163517')  (31.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131213193133')  (28.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131213195422')  (37.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204162705')  (29.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207080750')  (50.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20131017141521')  (29.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207080009')  (23.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131207081215')  (42.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131204163255') Started GET "/" for 127.0.0.1 at 2013-12-25 09:47:16 +0100 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (512.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (39.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (566.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (572.7ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (6.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (23.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (26.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (608.0ms) Rendered layouts/_head.html.haml (4013.5ms) Rendered layouts/_navigation.html.erb (11.7ms) Rendered layouts/_header.html.haml (13.1ms) Rendered layouts/_content.html.haml (1.4ms) Rendered layouts/_footer.html.haml (0.7ms) Completed 200 OK in 4774ms (Views: 4684.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:21 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-25 09:47:22 +0100 Started GET "/employees/new" for 127.0.0.1 at 2013-12-25 09:47:25 +0100 Processing by EmployeesController#new as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (13.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (50.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (4.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (6.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (11.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (6.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (3.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (107.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (115.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (121.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/new.html.haml within layouts/application (142.4ms) Rendered layouts/_head.html.haml (11.5ms) Rendered layouts/_navigation.html.erb (5.5ms) Rendered layouts/_header.html.haml (6.1ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 171ms (Views: 168.6ms | ActiveRecord: 1.2ms) Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-25 09:47:26 +0100 Started GET "/assets/select2-spinner.gif" for 127.0.0.1 at 2013-12-25 09:47:34 +0100 Started GET "/positions/options?query=&page=1&per=20&_=1387961246235" for 127.0.0.1 at 2013-12-25 09:47:34 +0100 Processing by PositionsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246235"}  (0.1ms) begin transaction  (0.1ms) commit transaction Position Load (0.2ms) SELECT DISTINCT "positions".* FROM "positions" LIMIT 20 OFFSET 0 Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.3ms) Started GET "/tasks/options?query=&page=1&per=20&_=1387961246236" for 127.0.0.1 at 2013-12-25 09:48:38 +0100 Processing by TasksController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246236"}  (0.1ms) begin transaction  (0.1ms) commit transaction Task Load (0.1ms) SELECT DISTINCT "tasks".* FROM "tasks" LIMIT 20 OFFSET 0 Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/accounts/options?query=&page=1&per=20&_=1387961246237" for 127.0.0.1 at 2013-12-25 09:48:51 +0100 Processing by AccountsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246237"}  (0.1ms) begin transaction  (0.0ms) commit transaction Account Load (0.2ms) SELECT DISTINCT "accounts".* FROM "accounts" LIMIT 20 OFFSET 0 Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/positions/options?query=&page=1&per=20&_=1387961246238" for 127.0.0.1 at 2013-12-25 09:48:59 +0100 Processing by PositionsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246238"}  (0.1ms) begin transaction  (0.1ms) commit transaction Position Load (0.2ms) SELECT DISTINCT "positions".* FROM "positions" LIMIT 20 OFFSET 0 Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/positions/options?query=&page=1&per=20&_=1387961246239" for 127.0.0.1 at 2013-12-25 10:37:03 +0100 Processing by PositionsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246239"}  (0.1ms) begin transaction  (0.1ms) commit transaction Position Load (0.1ms) SELECT DISTINCT "positions".* FROM "positions" LIMIT 20 OFFSET 0 Completed 200 OK in 70ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/projects/options?query=&page=1&per=20&_=1387961246240" for 127.0.0.1 at 2013-12-25 10:37:06 +0100 Processing by ProjectsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246240"}  (0.1ms) begin transaction  (0.1ms) commit transaction Project Load (0.1ms) SELECT DISTINCT "projects".* FROM "projects" LIMIT 20 OFFSET 0 Completed 200 OK in 17ms (Views: 0.1ms | ActiveRecord: 0.6ms) Started GET "/accounts/options?query=&page=1&per=20&_=1387961246241" for 127.0.0.1 at 2013-12-25 10:37:09 +0100 Processing by AccountsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246241"}  (0.1ms) begin transaction  (0.1ms) commit transaction Account Load (0.2ms) SELECT DISTINCT "accounts".* FROM "accounts" LIMIT 20 OFFSET 0 Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/skills/options?query=&page=1&per=20&_=1387961246242" for 127.0.0.1 at 2013-12-25 10:37:11 +0100 Processing by SkillsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1387961246242"}  (0.1ms) begin transaction  (0.1ms) commit transaction Skill Load (0.1ms) SELECT DISTINCT "skills".* FROM "skills" LIMIT 20 OFFSET 0 Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.5ms) Started GET "/employees/new" for 127.0.0.1 at 2013-12-25 11:07:17 +0100 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EmployeesController#new as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (4.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (564.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (6.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (5.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (7.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (15.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (50.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (4.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (114.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (123.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (226.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/new.html.haml within layouts/application (800.9ms) Rendered layouts/_head.html.haml (341.5ms) Rendered layouts/_navigation.html.erb (10.3ms) Rendered layouts/_header.html.haml (11.6ms) Rendered layouts/_content.html.haml (1.7ms) Rendered layouts/_footer.html.haml (0.7ms) Completed 200 OK in 1202ms (Views: 1171.4ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-25 11:07:19 +0100 Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:09:13 +0100 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (uninitialized constant EmployeeWithNestedsController): activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get' activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize' activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each' activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject' activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call' rack-pjax (0.7.0) lib/rack/pjax.rb:12: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.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' remotipart (1.2.1) lib/remotipart/middleware.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.2) lib/active_record/migration.rb:369:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1374770503358279977__call__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (133.4ms) Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:09:49 +0100 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (uninitialized constant EmployeeWithNestedsController): activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get' activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize' activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each' activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject' activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call' rack-pjax (0.7.0) lib/rack/pjax.rb:12: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.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' remotipart (1.2.1) lib/remotipart/middleware.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.2) lib/active_record/migration.rb:369:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3617003470682450755__call__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.7ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (135.7ms) Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:10:40 +0100 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (undefined method `accepts_nested_form_for' for #): app/models/employee_with_nested.rb:2:in `' app/models/employee_with_nested.rb:1:in `' app/controllers/employee_with_nesteds_controller.rb:1:in `' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.4ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (151.5ms) Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:12:26 +0100 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EmployeeWithNestedsController#index as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (543.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (555.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (561.8ms) EmployeeWithNested Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (7.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (26.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (30.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (601.2ms) Rendered layouts/_head.html.haml (336.3ms) Rendered layouts/_navigation.html.erb (14.8ms) Rendered layouts/_header.html.haml (16.0ms) Rendered layouts/_content.html.haml (1.3ms) Rendered layouts/_footer.html.haml (0.6ms) Completed 200 OK in 1099ms (Views: 969.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:28 +0100 Started GET "/employee_with_nesteds/new" for 127.0.0.1 at 2013-12-25 11:12:30 +0100 Processing by EmployeeWithNestedsController#new as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (19.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (5.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (51.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (7.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (13.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (29.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (4.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (5.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (17.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (4.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (140.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (16.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (234.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (240.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/new.html.haml within layouts/application (267.1ms) Rendered layouts/_head.html.haml (11.2ms) Rendered layouts/_navigation.html.erb (5.5ms) Rendered layouts/_header.html.haml (6.0ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 296ms (Views: 292.5ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:12:31 +0100 Started POST "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:12:50 +0100 Processing by EmployeeWithNestedsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>""}, "title"=>"", "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>""}}, "_save"=>""} Completed 500 Internal Server Error in 7ms ArgumentError (wrong number of arguments (0 for 1..2)): /home/lukas/projects/basepack/lib/basepack/forms/base.rb:98:in `field' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:194:in `block in sanitize_params' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:177:in `each' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:177:in `sanitize_params' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:170:in `permit_params' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:367:in `permitted_params' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:321:in `build_resource_params' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:360:in `build_resource_params' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:316:in `resource_params' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:349:in `build_resource' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:31:in `create' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:100:in `create' actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.2) lib/active_support/callbacks.rb:403:in `_run__36030730973913800__process_action__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call' rack-pjax (0.7.0) lib/rack/pjax.rb:12: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.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' remotipart (1.2.1) lib/remotipart/middleware.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.2) lib/active_record/migration.rb:369:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3535345620776134570__call__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.9ms) Started POST "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:15:17 +0100 Processing by EmployeeWithNestedsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>""}, "title"=>"", "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>""}}, "_save"=>""} Completed 500 Internal Server Error in 20ms ArgumentError (wrong number of arguments (0 for 1..2)): /home/lukas/projects/basepack/lib/basepack/forms/base.rb:98:in `field' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:198:in `block in sanitize_params' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:177:in `each' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:177:in `sanitize_params' /home/lukas/projects/basepack/lib/basepack/forms/base.rb:170:in `permit_params' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:367:in `permitted_params' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:321:in `build_resource_params' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:360:in `build_resource_params' inherited_resources (1.4.1) lib/inherited_resources/base_helpers.rb:316:in `resource_params' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:349:in `build_resource' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:31:in `create' /home/lukas/projects/basepack/app/controllers/basepack/base_controller.rb:100:in `create' actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.2) lib/active_support/callbacks.rb:403:in `_run__36030730973913800__process_action__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call' rack-pjax (0.7.0) lib/rack/pjax.rb:12: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.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' remotipart (1.2.1) lib/remotipart/middleware.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.2) lib/active_record/migration.rb:369:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__3535345620776134570__call__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms) Started POST "/employee_with_nesteds" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Processing by EmployeeWithNestedsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>""}, "title"=>"", "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>""}}, "_save"=>""}  (0.1ms) begin transaction Employee Exists (0.1ms) SELECT 1 AS one FROM "employees" WHERE "employees"."email" = 'saaa@adsad.cz' LIMIT 1 SQL (3.5ms) INSERT INTO "positions" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 25 Dec 2013 10:16:33 UTC +00:00], ["name", ""], ["updated_at", Wed, 25 Dec 2013 10:16:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "employees" ("bonus", "created_at", "email", "name", "position_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["bonus", false], ["created_at", Wed, 25 Dec 2013 10:16:33 UTC +00:00], ["email", "saaa@adsad.cz"], ["name", "xxxx"], ["position_id", 1], ["title", ""], ["updated_at", Wed, 25 Dec 2013 10:16:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "accounts" ("created_at", "employee_id", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 25 Dec 2013 10:16:33 UTC +00:00], ["employee_id", 1], ["updated_at", Wed, 25 Dec 2013 10:16:33 UTC +00:00]]  (30.1ms) commit transaction Redirected to http://localhost:3000/employee_with_nesteds/1 Completed 302 Found in 159ms (ActiveRecord: 35.8ms) Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (5.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (15.5ms) Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (20.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (23.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (45.5ms) Rendered layouts/_head.html.haml (10.1ms) Rendered layouts/_navigation.html.erb (11.4ms) Rendered layouts/_header.html.haml (11.9ms) Rendered layouts/_content.html.haml (0.3ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 80ms (Views: 75.9ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:33 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:34 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (12.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (2.1ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.1ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (10.9ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (48.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (85.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (87.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (153.6ms) Rendered layouts/_head.html.haml (11.8ms) Rendered layouts/_navigation.html.erb (5.9ms) Rendered layouts/_header.html.haml (6.4ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 187ms (Views: 183.3ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:36 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:37 +0100 Started PATCH "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Processing by EmployeeWithNestedsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>"1", "id"=>"1"}, "title"=>"", "projects_attributes"=>{"1387966606599"=>{"_destroy"=>"false", "name"=>"ddddddd", "description"=>"dfasdfasdfa", "employee_id"=>"", "task_ids"=>""}}, "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>"1", "id"=>"1"}}, "_save"=>"", "id"=>"1"} EmployeeWithNested Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction Task Load (0.2ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] SQL (0.6ms) INSERT INTO "projects" ("created_at", "description", "employee_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 25 Dec 2013 10:16:59 UTC +00:00], ["description", "dfasdfasdfa"], ["employee_id", 1], ["name", "ddddddd"], ["updated_at", Wed, 25 Dec 2013 10:16:59 UTC +00:00]]  (56.6ms) commit transaction Redirected to http://localhost:3000/employee_with_nesteds/1 Completed 302 Found in 101ms (ActiveRecord: 58.1ms) Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.9ms) Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (11.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (13.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (27.6ms) Rendered layouts/_head.html.haml (11.8ms) Rendered layouts/_navigation.html.erb (5.3ms) Rendered layouts/_header.html.haml (5.8ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 57ms (Views: 54.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:16:59 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (11.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.0ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (53.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (64.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (68.7ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.6ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (112.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (138.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (140.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (156.3ms) Rendered layouts/_head.html.haml (11.0ms) Rendered layouts/_navigation.html.erb (6.0ms) Rendered layouts/_header.html.haml (6.4ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 188ms (Views: 185.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:03 +0100 Started PATCH "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Processing by EmployeeWithNestedsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>"1", "id"=>"1"}, "title"=>"", "projects_attributes"=>{"0"=>{"name"=>"ddddddd", "description"=>"dfasdfasdfa", "employee_id"=>"1", "task_ids"=>"", "id"=>"1"}}, "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>"1", "id"=>"1"}, "skills_attributes"=>{"1387966642077"=>{"_destroy"=>"false", "name"=>"skill1", "employee_ids"=>""}, "1387966644480"=>{"_destroy"=>"false", "name"=>"skill2", "employee_ids"=>""}}}, "_save"=>"", "id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Project Load (0.3ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? AND "projects"."id" IN (1) [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] SQL (0.5ms) INSERT INTO "skills" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 25 Dec 2013 10:17:37 UTC +00:00], ["name", "skill1"], ["updated_at", Wed, 25 Dec 2013 10:17:37 UTC +00:00]]  (0.1ms) INSERT INTO "employees_skills" ("employee_id", "skill_id") VALUES (1, 1) SQL (0.2ms) INSERT INTO "skills" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 25 Dec 2013 10:17:37 UTC +00:00], ["name", "skill2"], ["updated_at", Wed, 25 Dec 2013 10:17:37 UTC +00:00]]  (0.1ms) INSERT INTO "employees_skills" ("employee_id", "skill_id") VALUES (1, 2)  (53.3ms) commit transaction Redirected to http://localhost:3000/employee_with_nesteds/1 Completed 302 Found in 99ms (ActiveRecord: 55.4ms) Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.1ms) Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (11.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (14.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (29.2ms) Rendered layouts/_head.html.haml (11.2ms) Rendered layouts/_navigation.html.erb (62.9ms) Rendered layouts/_header.html.haml (63.4ms) Rendered layouts/_content.html.haml (0.3ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 117ms (Views: 114.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:37 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (9.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (11.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.0ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.8ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (16.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.5ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.3ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (21.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (80.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (13.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (108.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (159.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (174.4ms) Rendered layouts/_head.html.haml (10.1ms) Rendered layouts/_navigation.html.erb (6.9ms) Rendered layouts/_header.html.haml (7.4ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 204ms (Views: 201.2ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:45 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:46 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:46 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:46 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:46 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:46 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:17:46 +0100 Started PATCH "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:18:12 +0100 Processing by EmployeeWithNestedsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>"1", "id"=>"1"}, "title"=>"", "projects_attributes"=>{"0"=>{"name"=>"ddddddd_update", "description"=>"dfasdfasdfa", "employee_id"=>"1", "task_ids"=>"", "id"=>"1"}, "1387966670094"=>{"_destroy"=>"false", "name"=>"project2", "description"=>"", "employee_id"=>"", "task_ids"=>""}}, "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>"1", "id"=>"1"}, "skills_attributes"=>{"0"=>{"name"=>"skill11", "employee_ids"=>"1", "id"=>"1"}, "1"=>{"name"=>"skill22", "employee_ids"=>"1", "id"=>"2"}}}, "_save"=>"", "id"=>"1"} EmployeeWithNested Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction Task Load (0.2ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? AND "projects"."id" IN (1) [["employee_id", 1]] Task Load (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.2ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? AND "skills"."id" IN (1, 2) [["employee_id", 1]] CACHE (0.0ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] CACHE (0.0ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] SQL (0.4ms) UPDATE "projects" SET "name" = ?, "updated_at" = ? WHERE "projects"."id" = 1 [["name", "ddddddd_update"], ["updated_at", Wed, 25 Dec 2013 10:18:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "projects" ("created_at", "description", "employee_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 25 Dec 2013 10:18:13 UTC +00:00], ["description", ""], ["employee_id", 1], ["name", "project2"], ["updated_at", Wed, 25 Dec 2013 10:18:13 UTC +00:00]] SQL (0.3ms) UPDATE "skills" SET "name" = ?, "updated_at" = ? WHERE "skills"."id" = 1 [["name", "skill11"], ["updated_at", Wed, 25 Dec 2013 10:18:13 UTC +00:00]] SQL (0.2ms) UPDATE "skills" SET "name" = ?, "updated_at" = ? WHERE "skills"."id" = 2 [["name", "skill22"], ["updated_at", Wed, 25 Dec 2013 10:18:13 UTC +00:00]]  (27.8ms) commit transaction Redirected to http://localhost:3000/employee_with_nesteds/1 Completed 302 Found in 84ms (ActiveRecord: 30.3ms) Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.3ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.0ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (10.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (12.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (26.1ms) Rendered layouts/_head.html.haml (10.2ms) Rendered layouts/_navigation.html.erb (5.9ms) Rendered layouts/_header.html.haml (6.4ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 58ms (Views: 53.6ms | ActiveRecord: 0.7ms) Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:13 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (58.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (61.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.8ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (29.1ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (5.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (8.4ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (20.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (139.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (10.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (164.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (166.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (179.7ms) Rendered layouts/_head.html.haml (10.1ms) Rendered layouts/_navigation.html.erb (5.8ms) Rendered layouts/_header.html.haml (6.3ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 208ms (Views: 205.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:20 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:18:21 +0100 Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.8ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (10.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (12.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (80.3ms) Rendered layouts/_head.html.haml (11.3ms) Rendered layouts/_navigation.html.erb (5.8ms) Rendered layouts/_header.html.haml (6.3ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 110ms (Views: 107.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:11 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:19:13 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (11.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.8ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (27.9ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (5.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (8.4ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (9.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (52.0ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (57.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (73.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (139.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (10.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (166.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (168.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (183.3ms) Rendered layouts/_head.html.haml (10.7ms) Rendered layouts/_navigation.html.erb (5.8ms) Rendered layouts/_header.html.haml (6.3ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 213ms (Views: 209.4ms | ActiveRecord: 1.2ms) Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:14 +0100 Started PATCH "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Processing by EmployeeWithNestedsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TVSIANo3WxkEVqR9ZoFQAHqzsl3llKsnb0nARaw5l5E=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"saaa@adsad.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"", "employee_ids"=>"1", "id"=>"1"}, "title"=>"", "projects_attributes"=>{"0"=>{"name"=>"ddddddd_update", "description"=>"dfasdfasdfa", "employee_id"=>"1", "task_ids"=>"", "id"=>"1"}, "1"=>{"name"=>"project2", "description"=>"", "employee_id"=>"1", "task_ids"=>"", "id"=>"2"}, "1387966759855"=>{"_destroy"=>"1", "name"=>"", "description"=>"", "employee_id"=>"", "task_ids"=>""}}, "task_ids"=>"", "account_attributes"=>{"account_number"=>"", "employee_id"=>"1", "id"=>"1"}, "skills_attributes"=>{"0"=>{"name"=>"skill11", "employee_ids"=>"1", "id"=>"1"}, "1"=>{"name"=>"skill22", "employee_ids"=>"1", "id"=>"2"}}}, "_save"=>"", "id"=>"1"} EmployeeWithNested Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Employee Load (0.0ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.0ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? AND "projects"."id" IN (1, 2) [["employee_id", 1]] Task Load (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Task Load (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? AND "skills"."id" IN (1, 2) [["employee_id", 1]] CACHE (0.0ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] CACHE (0.0ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", 1]] Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]]  (0.1ms) commit transaction Redirected to http://localhost:3000/employee_with_nesteds/1 Completed 302 Found in 37ms (ActiveRecord: 1.1ms) Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.4ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (11.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (13.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (26.8ms) Rendered layouts/_head.html.haml (10.7ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.8ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 54ms (Views: 52.0ms | ActiveRecord: 0.6ms) Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:25 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:26 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:26 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:19:26 +0100 Started GET "/employees" for 127.0.0.1 at 2013-12-25 11:20:00 +0100 Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (9.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (13.2ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (3.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (33.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (36.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (55.2ms) Rendered layouts/_head.html.haml (11.4ms) Rendered layouts/_navigation.html.erb (5.7ms) Rendered layouts/_header.html.haml (6.2ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 89ms (Views: 81.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:01 +0100 Started GET "/employees/1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Processing by EmployeesController#show as HTML Parameters: {"id"=>"1"} Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.1ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (9.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (11.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (24.5ms) Rendered layouts/_head.html.haml (9.9ms) Rendered layouts/_navigation.html.erb (58.6ms) Rendered layouts/_header.html.haml (59.0ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 104ms (Views: 101.9ms | ActiveRecord: 0.5ms) Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:04 +0100 Started GET "/employees/1/edit" for 127.0.0.1 at 2013-12-25 11:20:08 +0100 Processing by EmployeesController#edit as HTML Parameters: {"id"=>"1"} Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.9ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.0ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.2ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (31.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (34.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (36.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (49.4ms) Rendered layouts/_head.html.haml (11.7ms) Rendered layouts/_navigation.html.erb (5.8ms) Rendered layouts/_header.html.haml (6.2ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 79ms (Views: 76.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Started GET "/positions/options?f%5Bid_eq%5D=1" for 127.0.0.1 at 2013-12-25 11:20:09 +0100 Processing by PositionsController#options as JSON Parameters: {"f"=>{"id_eq"=>"1"}}  (0.1ms) begin transaction  (0.1ms) commit transaction Position Load (0.2ms) SELECT DISTINCT "positions".* FROM "positions" WHERE "positions"."id" = 1 LIMIT 15 OFFSET 0 Completed 200 OK in 23ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:27:08 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (54.6ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (11.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.9ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (28.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.3ms) Skill Load (0.2ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (22.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (145.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (174.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (177.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (190.6ms) Rendered layouts/_head.html.haml (11.5ms) Rendered layouts/_navigation.html.erb (5.7ms) Rendered layouts/_header.html.haml (6.3ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 222ms (Views: 218.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:27:09 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:38:26 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (13.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (20.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.9ms) Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (5.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (14.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (40.9ms) Task Load (0.2ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (54.7ms) Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (5.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (17.4ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (28.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (178.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (205.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (266.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (285.3ms) Rendered layouts/_head.html.haml (10.6ms) Rendered layouts/_navigation.html.erb (13.8ms) Rendered layouts/_header.html.haml (14.4ms) Rendered layouts/_content.html.haml (0.3ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 337ms (Views: 317.9ms | ActiveRecord: 4.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:38:27 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:47:03 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (10.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.8ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (30.9ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.5ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (5.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (8.5ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (20.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (91.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (10.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (54.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (165.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (168.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (181.7ms) Rendered layouts/_head.html.haml (10.3ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.8ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 210ms (Views: 206.8ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-25 11:47:04 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 11:47:55 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (57.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (61.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (28.7ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (11.0ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.2ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (21.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (142.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (170.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (172.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (187.6ms) Rendered layouts/_head.html.haml (11.9ms) Rendered layouts/_navigation.html.erb (5.6ms) Rendered layouts/_header.html.haml (6.1ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 218ms (Views: 215.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 11:47:55 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:55 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 11:47:55 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 11:47:55 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:55 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-25 11:47:56 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (11.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.8ms) Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (13.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (33.1ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (55.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (58.6ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (20.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (143.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (10.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (5.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (169.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (171.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (186.7ms) Rendered layouts/_head.html.haml (10.1ms) Rendered layouts/_navigation.html.erb (5.2ms) Rendered layouts/_header.html.haml (5.6ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 215ms (Views: 211.8ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:56 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-25 12:08:57 +0100 Started GET "/items/bulk_edit" for 127.0.0.1 at 2013-12-25 13:54:13 +0100 ActionController::RoutingError (No route matches [GET] "/items/bulk_edit"): actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (60.7ms) Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-25 14:00:52 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (50.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (10.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.7ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.7ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (30.1ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (5.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.0ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.2ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (22.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (140.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (166.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (168.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (182.2ms) Rendered layouts/_head.html.haml (10.2ms) Rendered layouts/_navigation.html.erb (7.7ms) Rendered layouts/_header.html.haml (8.2ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 213ms (Views: 210.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-25 14:00:53 +0100 Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Processing by EmployeeWithNestedsController#index as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (5.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (9.4ms) EmployeeWithNested Load (0.4ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (75.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (78.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (93.6ms) Rendered layouts/_head.html.haml (10.7ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.8ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 126ms (Views: 118.9ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:33 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:34 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:34 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:34 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:34 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:34 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.6ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.7ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.5ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (12.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (29.8ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.1ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.4ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (52.5ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (58.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (71.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (139.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (165.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (168.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (183.5ms) Rendered layouts/_head.html.haml (10.0ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.8ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 213ms (Views: 209.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:37 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:38 +0100 Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.7ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (10.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (12.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (25.6ms) Rendered layouts/_head.html.haml (9.8ms) Rendered layouts/_navigation.html.erb (5.2ms) Rendered layouts/_header.html.haml (5.7ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 52ms (Views: 49.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:54 +0100 Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Processing by EmployeeWithNestedsController#index as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (6.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (10.5ms) EmployeeWithNested Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (4.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (78.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (80.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (96.0ms) Rendered layouts/_head.html.haml (11.5ms) Rendered layouts/_navigation.html.erb (5.9ms) Rendered layouts/_header.html.haml (6.4ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 128ms (Views: 122.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-26 19:46:57 +0100 Started GET "/employee_with_nesteds/new" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Processing by EmployeeWithNestedsController#new as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (6.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (41.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (69.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (71.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/new.html.haml within layouts/application (84.4ms) Rendered layouts/_head.html.haml (11.9ms) Rendered layouts/_navigation.html.erb (5.9ms) Rendered layouts/_header.html.haml (6.5ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 116ms (Views: 114.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-26 19:47:00 +0100 Started POST "/employee_with_nesteds" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Processing by EmployeeWithNestedsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"A4i6rqQMDmvtnBRGH3Rt+CWlLrtjL9U0zC8kWFfOk3A=", "employee_with_nested"=>{"name"=>"xxxx", "email"=>"asdfa@dafds.cz", "income"=>"", "bonus"=>"0", "position_attributes"=>{"name"=>"job position", "employee_ids"=>""}, "title"=>"", "projects_attributes"=>{"1388083641997"=>{"_destroy"=>"false", "name"=>"project1", "description"=>"description of project1", "employee_id"=>"", "task_ids"=>""}, "1388083646579"=>{"_destroy"=>"false", "name"=>"project2", "description"=>"description of project2", "employee_id"=>"", "task_ids"=>""}}, "task_ids"=>"", "account_attributes"=>{"account_number"=>"123456789", "employee_id"=>""}, "skills_attributes"=>{"1388083702079"=>{"_destroy"=>"false", "name"=>"skill1", "employee_ids"=>""}}}, "_save"=>""}  (0.1ms) begin transaction Employee Exists (0.1ms) SELECT 1 AS one FROM "employees" WHERE "employees"."email" = 'asdfa@dafds.cz' LIMIT 1 SQL (0.4ms) INSERT INTO "positions" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00], ["name", "job position"], ["updated_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00]] SQL (0.4ms) INSERT INTO "employees" ("bonus", "created_at", "email", "name", "position_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["bonus", false], ["created_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00], ["email", "asdfa@dafds.cz"], ["name", "xxxx"], ["position_id", 2], ["title", ""], ["updated_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00]] SQL (0.3ms) INSERT INTO "projects" ("created_at", "description", "employee_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00], ["description", "description of project1"], ["employee_id", 2], ["name", "project1"], ["updated_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00]] SQL (0.1ms) INSERT INTO "projects" ("created_at", "description", "employee_id", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00], ["description", "description of project2"], ["employee_id", 2], ["name", "project2"], ["updated_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00]] SQL (0.2ms) INSERT INTO "accounts" ("account_number", "created_at", "employee_id", "updated_at") VALUES (?, ?, ?, ?) [["account_number", 123456789], ["created_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00], ["employee_id", 2], ["updated_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00]] SQL (0.2ms) INSERT INTO "skills" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00], ["name", "skill1"], ["updated_at", Thu, 26 Dec 2013 18:48:58 UTC +00:00]]  (0.1ms) INSERT INTO "employees_skills" ("employee_id", "skill_id") VALUES (2, 3)  (29.2ms) commit transaction Redirected to http://localhost:3000/employee_with_nesteds/2 Completed 302 Found in 71ms (ActiveRecord: 31.1ms) Started GET "/employee_with_nesteds/2" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"2"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "2"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.7ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 2]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 2]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 2]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 2]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (11.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (13.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (28.1ms) Rendered layouts/_head.html.haml (10.6ms) Rendered layouts/_navigation.html.erb (5.2ms) Rendered layouts/_header.html.haml (5.7ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 55ms (Views: 52.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-26 19:48:58 +0100 Started GET "/items/bulk_edit" for 127.0.0.1 at 2013-12-27 11:15:01 +0100 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/items/bulk_edit"): actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.4ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (66.5ms) Started GET "/items/bulk_edit" for 127.0.0.1 at 2013-12-27 11:15:05 +0100 ActionController::RoutingError (No route matches [GET] "/items/bulk_edit"): actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (46.6ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (97.1ms) Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-27 11:15:39 +0100 ActionController::RoutingError (No route matches [GET] "/employee_with_nesteds"): actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (54.7ms) Started GET "/employee/" for 127.0.0.1 at 2013-12-27 11:15:42 +0100 ActionController::RoutingError (No route matches [GET] "/employee"): actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (53.1ms) Started GET "/employees/" for 127.0.0.1 at 2013-12-27 11:15:45 +0100 Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (593.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (607.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (613.6ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1, 2) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1, 2) Project Load (2.0ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.2ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 2]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 2]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 2]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (6.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (183.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (187.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (808.4ms) Rendered layouts/_head.html.haml (723.5ms) Rendered layouts/_navigation.html.erb (51.5ms) Rendered layouts/_header.html.haml (54.8ms) Rendered layouts/_content.html.haml (1.4ms) Rendered layouts/_footer.html.haml (0.7ms) Completed 200 OK in 1695ms (Views: 1601.0ms | ActiveRecord: 5.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:47 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2013-12-27 11:15:48 +0100 Started GET "/employees/bulk_edit" for 127.0.0.1 at 2013-12-27 11:15:53 +0100 Processing by EmployeesController#bulk_edit as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.1ms)  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (4.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (49.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/bulk_edit/_form_filtering_multiselect.html.haml (6.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/bulk_edit/_form_filtering_multiselect.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_bulk_edit.html.haml (99.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_bulk_edit.html.haml (108.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/bulk_edit.html.haml within layouts/application (123.3ms) Rendered layouts/_head.html.haml (9.4ms) Rendered layouts/_navigation.html.erb (4.7ms) Rendered layouts/_header.html.haml (5.2ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 148ms (Views: 147.1ms | ActiveRecord: 0.5ms) Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/select2.png" for 127.0.0.1 at 2013-12-27 11:15:54 +0100 Started GET "/assets/select2-spinner.gif" for 127.0.0.1 at 2013-12-27 11:16:18 +0100 Started GET "/tasks/options?query=&page=1&per=20&_=1388139354240" for 127.0.0.1 at 2013-12-27 11:16:18 +0100 Processing by TasksController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1388139354240"}  (0.1ms) begin transaction  (0.0ms) commit transaction Task Load (0.1ms) SELECT DISTINCT "tasks".* FROM "tasks" LIMIT 20 OFFSET 0 Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/tasks/options?query=&page=1&per=20&_=1388139354241" for 127.0.0.1 at 2013-12-27 11:27:45 +0100 Processing by TasksController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1388139354241"}  (0.1ms) begin transaction  (0.0ms) commit transaction Task Load (0.1ms) SELECT DISTINCT "tasks".* FROM "tasks" LIMIT 20 OFFSET 0 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms) Started GET "/" for 127.0.0.1 at 2013-12-27 21:36:02 +0100 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (553.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (2.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (570.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (576.6ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1, 2) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1, 2) Project Load (1.9ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.3ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.2ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 2]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 2]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 2]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (6.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (146.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (150.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (736.0ms) Rendered layouts/_head.html.haml (723.3ms) Rendered layouts/_navigation.html.erb (12.7ms) Rendered layouts/_header.html.haml (14.1ms) Rendered layouts/_content.html.haml (1.4ms) Rendered layouts/_footer.html.haml (0.7ms) Completed 200 OK in 1620ms (Views: 1484.3ms | ActiveRecord: 5.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:04 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:05 +0100 Started DELETE "/employees/bulk_delete" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Processing by EmployeesController#bulk_delete as HTML Parameters: {"authenticity_token"=>"zbyPqoCBGqbsrZ8rwk1DUqxiLQZNi1OkHOxfcgPxKm4=", "ids"=>"2"}  (0.1ms) begin transaction  (0.1ms) commit transaction Employee Load (0.3ms) SELECT DISTINCT "employees".* FROM "employees" WHERE "employees"."id" IN (2) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (2) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (2)  (0.1ms) begin transaction  (0.3ms) DELETE FROM "employees_skills" WHERE "employees_skills"."employee_id" = 2 SQL (0.1ms) DELETE FROM "employees" WHERE "employees"."id" = ? [["id", 2]]  (49.4ms) commit transaction Redirected to http://localhost:3000/employees Completed 302 Found in 61ms (ActiveRecord: 50.7ms) Started GET "/employees" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (8.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (12.4ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (4.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (23.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (25.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (44.1ms) Rendered layouts/_head.html.haml (12.6ms) Rendered layouts/_navigation.html.erb (6.0ms) Rendered layouts/_header.html.haml (6.7ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 79ms (Views: 73.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:26 +0100 Started GET "/employees/1/edit" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Processing by EmployeesController#edit as HTML Parameters: {"id"=>"1"} Employee Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (5.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (11.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (5.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (4.1ms) Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (6.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.4ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.4ms) Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (3.7ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (51.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (60.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (66.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (83.8ms) Rendered layouts/_head.html.haml (10.5ms) Rendered layouts/_navigation.html.erb (7.9ms) Rendered layouts/_header.html.haml (8.6ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 115ms (Views: 111.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:33 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Started GET "/positions/options?f%5Bid_eq%5D=1" for 127.0.0.1 at 2013-12-27 21:36:34 +0100 Processing by PositionsController#options as JSON Parameters: {"f"=>{"id_eq"=>"1"}}  (0.1ms) begin transaction  (0.0ms) commit transaction Position Load (0.3ms) SELECT DISTINCT "positions".* FROM "positions" WHERE "positions"."id" = 1 LIMIT 15 OFFSET 0 Completed 200 OK in 22ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/employees/query" for 127.0.0.1 at 2013-12-27 21:36:42 +0100 Processing by EmployeesController#query as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_close.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (2.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (61.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_cancel.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_refresh.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query.html.haml (191.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_query.html.haml (202.4ms) Completed 200 OK in 233ms (Views: 231.9ms | ActiveRecord: 0.5ms) Started POST "/employees/query" for 127.0.0.1 at 2013-12-27 21:36:55 +0100 Processing by EmployeesController#query as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_close.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (46.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_refresh.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query.html.haml (83.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_query.html.haml (92.7ms) Completed 200 OK in 120ms (Views: 119.0ms | ActiveRecord: 0.1ms) Started GET "/employees" for 127.0.0.1 at 2013-12-27 21:37:04 +0100 Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (7.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (12.0ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (22.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (25.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (44.7ms) Rendered layouts/_head.html.haml (11.4ms) Rendered layouts/_navigation.html.erb (6.3ms) Rendered layouts/_header.html.haml (6.9ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 77ms (Views: 71.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:04 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:04 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:04 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:05 +0100 Started POST "/employees/query" for 127.0.0.1 at 2013-12-27 21:37:07 +0100 Processing by EmployeesController#query as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_close.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (48.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_refresh.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query.html.haml (85.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_query.html.haml (96.5ms) Completed 200 OK in 123ms (Views: 122.5ms | ActiveRecord: 0.2ms) Started POST "/employees/query" for 127.0.0.1 at 2013-12-27 21:37:12 +0100 Processing by EmployeesController#query as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zbyPqoCBGqbsrZ8rwk1DUqxiLQZNi1OkHOxfcgPxKm4=", "query"=>"", "_refresh"=>""}  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (7.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (13.3ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (3.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (21.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (24.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (45.0ms) Rendered layouts/_head.html.haml (13.6ms) Rendered layouts/_navigation.html.erb (5.9ms) Rendered layouts/_header.html.haml (6.4ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 83ms (Views: 75.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:13 +0100 Started GET "/employees/bulk_edit" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Processing by EmployeesController#bulk_edit as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (5.8ms)  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/bulk_edit/_form_filtering_multiselect.html.haml (57.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_bulk_edit.html.haml (89.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_bulk_edit.html.haml (97.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/bulk_edit.html.haml within layouts/application (109.8ms) Rendered layouts/_head.html.haml (10.4ms) Rendered layouts/_navigation.html.erb (5.7ms) Rendered layouts/_header.html.haml (6.1ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 137ms (Views: 135.9ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:23 +0100 Started GET "/employees/1/edit" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Processing by EmployeesController#edit as HTML Parameters: {"id"=>"1"} Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (0.7ms) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.6ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.2ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (31.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (34.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (36.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (51.0ms) Rendered layouts/_head.html.haml (11.0ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.9ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 80ms (Views: 78.1ms | ActiveRecord: 0.6ms) Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:38 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:37:39 +0100 Started GET "/positions/options?f%5Bid_eq%5D=1" for 127.0.0.1 at 2013-12-27 21:37:39 +0100 Processing by PositionsController#options as JSON Parameters: {"f"=>{"id_eq"=>"1"}}  (0.1ms) begin transaction  (0.1ms) commit transaction Position Load (0.2ms) SELECT DISTINCT "positions".* FROM "positions" WHERE "positions"."id" = 1 LIMIT 15 OFFSET 0 Completed 200 OK in 19ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started GET "/projects/options?query=&page=1&per=20&_=1388176658666" for 127.0.0.1 at 2013-12-27 21:38:01 +0100 Processing by ProjectsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1388176658666"}  (0.1ms) begin transaction  (0.0ms) commit transaction Project Load (0.2ms) SELECT DISTINCT "projects".* FROM "projects" LIMIT 20 OFFSET 0 Employee Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" IN (1, 2) Completed 200 OK in 46ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/skills/options?query=&page=1&per=20&_=1388176658667" for 127.0.0.1 at 2013-12-27 21:38:08 +0100 Processing by SkillsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1388176658667"}  (0.1ms) begin transaction  (0.1ms) commit transaction Skill Load (0.2ms) SELECT DISTINCT "skills".* FROM "skills" LIMIT 20 OFFSET 0 Completed 200 OK in 38ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/positions/options?query=&page=1&per=20&_=1388176658668" for 127.0.0.1 at 2013-12-27 21:38:21 +0100 Processing by PositionsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1388176658668"}  (0.1ms) begin transaction  (0.0ms) commit transaction Position Load (0.1ms) SELECT DISTINCT "positions".* FROM "positions" LIMIT 20 OFFSET 0 Completed 200 OK in 26ms (Views: 0.3ms | ActiveRecord: 0.3ms) Started GET "/positions/options?query=&page=1&per=20&_=1388176658669" for 127.0.0.1 at 2013-12-27 21:38:24 +0100 Processing by PositionsController#options as JSON Parameters: {"query"=>"", "page"=>"1", "per"=>"20", "_"=>"1388176658669"}  (0.1ms) begin transaction  (0.0ms) commit transaction Position Load (0.2ms) SELECT DISTINCT "positions".* FROM "positions" LIMIT 20 OFFSET 0 Completed 200 OK in 33ms (Views: 0.4ms | ActiveRecord: 0.3ms) Started GET "/employees/1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Processing by EmployeesController#show as HTML Parameters: {"id"=>"1"} Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (4.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (11.8ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (16.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (21.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (42.0ms) Rendered layouts/_head.html.haml (14.0ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.9ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 80ms (Views: 77.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:32 +0100 Started GET "/employee_with_nesteds" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Processing by EmployeeWithNestedsController#index as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (59.6ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (63.9ms) EmployeeWithNested Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.2ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (30.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (32.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (103.5ms) Rendered layouts/_head.html.haml (11.2ms) Rendered layouts/_navigation.html.erb (5.7ms) Rendered layouts/_header.html.haml (6.2ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 139ms (Views: 130.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:38 +0100 Started GET "/employee_with_nesteds/1/edit" for 127.0.0.1 at 2013-12-27 21:38:40 +0100 Processing by EmployeeWithNestedsController#edit as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.4ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" WHERE "employees"."position_id" = ? [["position_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (8.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (13.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.1ms) Project Load (0.2ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (2.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (2.5ms) Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (15.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (55.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.6ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = ? [["project_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (66.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (89.7ms) Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.9ms) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_one.html.haml (9.9ms) Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (2.1ms) Employee Load (0.2ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (4.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (9.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Employee Load (0.1ms) SELECT "employees".* FROM "employees" INNER JOIN "employees_skills" ON "employees"."id" = "employees_skills"."employee_id" WHERE "employees_skills"."skill_id" = ? [["skill_id", 2]] Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (3.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (7.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_nested_many.html.haml (23.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (157.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_submit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_text.html.haml (1.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_select.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (11.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_field.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/edit/_form_filtering_multiselect.html.haml (2.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_form_fields.html.haml (6.8ms) Rendered /home/lukas/projects/basepack/app/views/forms/_edit.html.haml (184.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_edit.html.haml (187.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/edit.html.haml within layouts/application (202.2ms) Rendered layouts/_head.html.haml (10.8ms) Rendered layouts/_navigation.html.erb (6.0ms) Rendered layouts/_header.html.haml (6.5ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 235ms (Views: 231.3ms | ActiveRecord: 1.6ms) Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:41 +0100 Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-27 21:38:57 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (3.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (8.3ms) Position Load (0.1ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (10.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (12.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (27.0ms) Rendered layouts/_head.html.haml (12.7ms) Rendered layouts/_navigation.html.erb (6.1ms) Rendered layouts/_header.html.haml (6.6ms) Rendered layouts/_content.html.haml (0.1ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 112ms (Views: 109.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:38:58 +0100 Started GET "/employee_with_nesteds/1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Processing by EmployeeWithNestedsController#show as HTML Parameters: {"id"=>"1"} EmployeeWithNested Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = ? LIMIT 1 [["id", "1"]] Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_edit.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_delete.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (2.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (7.4ms) Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" = ? ORDER BY "positions"."id" ASC LIMIT 1 [["id", 1]] Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" = ? ORDER BY "accounts"."id" ASC LIMIT 1 [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]] Rendered /home/lukas/projects/basepack/app/views/forms/_show.html.haml (10.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_show.html.haml (12.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/show.html.haml within layouts/application (25.8ms) Rendered layouts/_head.html.haml (12.6ms) Rendered layouts/_navigation.html.erb (6.4ms) Rendered layouts/_header.html.haml (7.0ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 57ms (Views: 54.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:02 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:03 +0100 Started GET "/accounts" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Processing by AccountsController#index as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (6.0ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (10.2ms) Account Load (0.2ms) SELECT DISTINCT "accounts".* FROM "accounts" LIMIT 15 OFFSET 0 Employee Load (0.1ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" IN (1, 2)  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "accounts"."id") FROM "accounts" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (3.6ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (14.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (16.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (33.4ms) Rendered layouts/_head.html.haml (11.1ms) Rendered layouts/_navigation.html.erb (63.4ms) Rendered layouts/_header.html.haml (63.9ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 124ms (Views: 119.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:04 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:05 +0100 Started GET "/accounts/export" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Processing by AccountsController#export as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (1.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (6.5ms)  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "accounts"."id") FROM "accounts" Rendered /home/lukas/projects/basepack/app/views/forms/_export.html.haml (12.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_export.html.haml (18.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/export.html.haml within layouts/application (31.7ms) Rendered layouts/_head.html.haml (11.0ms) Rendered layouts/_navigation.html.erb (6.6ms) Rendered layouts/_header.html.haml (7.2ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.1ms) Completed 200 OK in 60ms (Views: 59.1ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:39:08 +0100 Started GET "/accounts/import" for 127.0.0.1 at 2013-12-27 21:41:37 +0100 Processing by AccountsController#import as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (1.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (5.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_import.html.haml (217.8ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/import.html.haml within layouts/application (229.3ms) Completed 500 Internal Server Error in 237ms ActionView::Template::Error (undefined local variable or method `import_form' for #<#:0x007f194d660d10>): 1: = form_render import_form /home/lukas/projects/basepack/app/views/basepack/base/_import.html.haml:1:in `__home_lukas_projects_basepack_app_views_basepack_base__import_html_haml___3774585820377591478_69873179320780' actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.2) lib/action_view/template.rb:141:in `render' actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial' actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:279:in `block in render' actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:278:in `render' actionpack (4.0.2) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionpack (4.0.2) lib/action_view/helpers/rendering_helper.rb:27:in `render' haml (4.0.4) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.4) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.4) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /home/lukas/projects/basepack/app/views/basepack/base/import.html.haml:2:in `__home_lukas_projects_basepack_app_views_basepack_base_import_html_haml___3701191836040775504_69873324813080' actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render' activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument' actionpack (4.0.2) lib/action_view/template.rb:141:in `render' actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template' actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template' actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout' actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template' actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render' actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template' actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render' actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template' actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template' actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body' actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body' actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body' actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render' actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render' remotipart (1.2.1) lib/remotipart/render_overrides.rb:14:in `render_with_remotipart' actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (4.0.2) lib/active_support/callbacks.rb:413:in `_run__2090240086594767634__process_action__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action' activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process' actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process' actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call' rack-pjax (0.7.0) lib/rack/pjax.rb:12: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.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' remotipart (1.2.1) lib/remotipart/middleware.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call' activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call' activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call' activerecord (4.0.2) lib/active_record/migration.rb:369:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__2530532707878210723__call__callbacks' activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks' actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app' railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged' activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged' railties (4.0.2) lib/rails/rack/logger.rb:20:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call' dragonfly (1.0.1) lib/dragonfly/cookie_monster.rb:9:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.0.2) lib/rails/engine.rb:511:in `call' railties (4.0.2) lib/rails/application.rb:97:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /home/lukas/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /home/lukas/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (51.5ms) Started GET "/accounts/export" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Processing by AccountsController#export as HTML Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (5.9ms)  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "accounts"."id") FROM "accounts" Rendered /home/lukas/projects/basepack/app/views/forms/_export.html.haml (5.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_export.html.haml (10.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/export.html.haml within layouts/application (21.5ms) Rendered layouts/_head.html.haml (10.1ms) Rendered layouts/_navigation.html.erb (5.4ms) Rendered layouts/_header.html.haml (5.9ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 48ms (Views: 47.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:32 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:33 +0100 Started POST "/accounts/query" for 127.0.0.1 at 2013-12-27 21:57:42 +0100 Processing by AccountsController#query as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_close.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.7ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (10.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_cancel.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_refresh.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query.html.haml (46.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_query.html.haml (56.2ms) Completed 200 OK in 83ms (Views: 82.0ms | ActiveRecord: 0.1ms) Started GET "/employees" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Processing by EmployeesController#index as HTML  (0.1ms) begin transaction  (0.0ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_create.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_query.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_export.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_import.html.haml (0.2ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_bulk_delete.html.haml (0.4ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_page_actions.html.haml (7.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_header.html.haml (11.5ms) Employee Load (0.2ms) SELECT DISTINCT "employees".* FROM "employees" LIMIT 15 OFFSET 0 Position Load (0.2ms) SELECT "positions".* FROM "positions" WHERE "positions"."id" IN (1) Account Load (0.1ms) SELECT "accounts".* FROM "accounts" WHERE "accounts"."employee_id" IN (1) Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Task Load (0.1ms) SELECT "tasks".* FROM "tasks" INNER JOIN "projects" ON "tasks"."project_id" = "projects"."id" WHERE "projects"."employee_id" = ? [["employee_id", 1]] Skill Load (0.1ms) SELECT "skills".* FROM "skills" INNER JOIN "employees_skills" ON "skills"."id" = "employees_skills"."skill_id" WHERE "employees_skills"."employee_id" = ? [["employee_id", 1]]  (0.2ms) SELECT DISTINCT COUNT(DISTINCT "employees"."id") FROM "employees" Rendered /home/lukas/projects/basepack/app/views/forms/_page_entries_info.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_pagination.html.haml (4.1ms) Rendered /home/lukas/projects/basepack/app/views/forms/_list.html.haml (23.1ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_index.html.haml (25.7ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/index.html.haml within layouts/application (43.0ms) Rendered layouts/_head.html.haml (12.6ms) Rendered layouts/_navigation.html.erb (6.0ms) Rendered layouts/_header.html.haml (6.6ms) Rendered layouts/_content.html.haml (0.2ms) Rendered layouts/_footer.html.haml (0.0ms) Completed 200 OK in 77ms (Views: 71.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/basepack_and_overrides.css?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/basepack.css?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/jquery_nested_form.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/rails_admin/jquery.ui.timepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/rails_admin/ra.datetimepicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/rails_admin/jquery.colorpicker.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/select2.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/bootstrap-transition.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/bootstrap-affix.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/bootstrap-button.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/bootstrap-alert.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:58 +0100 Started GET "/assets/bootstrap-carousel.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-collapse.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-dropdown.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-scrollspy.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-modal.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-tab.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-tooltip.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-popover.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-typeahead.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootstrap-modalmanager.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/bootbox.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/forms.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/underscore.string.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/forms/query.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/forms/query/date.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/forms/query/filter.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/forms/query/predicate.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/list.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack/loading_spinner.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/basepack.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 21:57:59 +0100 Started POST "/employees/query" for 127.0.0.1 at 2013-12-27 21:58:04 +0100 Processing by EmployeesController#query as HTML  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_close.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.9ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (1.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (2.0ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (2.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (60.4ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query_menu.html.haml (111.5ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_modal_cancel.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/buttons/_refresh.html.haml (0.3ms) Rendered /home/lukas/projects/basepack/app/views/forms/_query.html.haml (149.9ms) Rendered /home/lukas/projects/basepack/app/views/basepack/base/_query.html.haml (159.8ms) Completed 200 OK in 194ms (Views: 192.6ms | ActiveRecord: 0.2ms)